diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/ISkillsetsOperations.Customization.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/ISkillsetsOperations.Customization.cs new file mode 100644 index 000000000000..edf3c545e580 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/ISkillsetsOperations.Customization.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search +{ + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + public partial interface ISkillsetsOperations + { + /// + /// Creates a new Azure Search skillset or updates a skillset if + /// it already exists. + /// + /// + /// The definition of the skillset to create or update. + /// + /// + /// Additional parameters for the operation + /// + /// + /// Additional parameters for the operation + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateOrUpdateWithHttpMessagesAsync(Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), AccessCondition accessCondition = default(AccessCondition), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Determines whether or not the given skillset exists in the Azure Search service. + /// + /// + /// The name of the skillset. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response with the value true if the skillset exists; false otherwise. + /// + Task> ExistsWithHttpMessagesAsync(string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/ImageAnalysisSkillLanguage.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/ImageAnalysisSkillLanguage.cs new file mode 100644 index 000000000000..c8a09f05b550 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/ImageAnalysisSkillLanguage.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Serialization; + + /// + /// Defines the format of ImageAnalysisSkill supported language codes. + /// + [JsonConverter(typeof(ExtensibleEnumConverter))] + public sealed class ImageAnalysisSkillLanguage : ExtensibleEnum + { + /// + /// Indicates language code "en" (for English) + /// + public static readonly ImageAnalysisSkillLanguage En = new ImageAnalysisSkillLanguage("en"); + + /// + /// Indicates language code "zh" (for Simplified Chinese) + /// + public static readonly ImageAnalysisSkillLanguage Zh = new ImageAnalysisSkillLanguage("zh"); + + private ImageAnalysisSkillLanguage(string name) : base(name) + { + // Base class does all initialization. + } + + /// + /// Creates a new ImageAnalysisSkillLanguage instance, or returns an existing instance. + /// + /// Supported language code. + /// An ImageAnalysisSkillLanguage instance with the given name. + public static ImageAnalysisSkillLanguage Create(string name) => Lookup(name) ?? new ImageAnalysisSkillLanguage(name); + + /// + /// Defines implicit conversion from string to ImageAnalysisSkillLanguage. + /// + /// string to convert. + /// The string as a ImageAnalysisSkillLanguage. + public static implicit operator ImageAnalysisSkillLanguage(string name) => Create(name); + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/KeyPhraseExtractionSkillLanguage.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/KeyPhraseExtractionSkillLanguage.cs new file mode 100644 index 000000000000..67e733ef2aa0 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/KeyPhraseExtractionSkillLanguage.cs @@ -0,0 +1,115 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Serialization; + + /// + /// Defines the format of KeyPhraseExtractionSkill supported language codes. + /// + [JsonConverter(typeof(ExtensibleEnumConverter))] + public sealed class KeyPhraseExtractionSkillLanguage : ExtensibleEnum + { + /// + /// Indicates language code "da" (for Danish) + /// + public static readonly KeyPhraseExtractionSkillLanguage Da = new KeyPhraseExtractionSkillLanguage("da"); + + /// + /// Indicates language code "nl" (for Dutch) + /// + public static readonly KeyPhraseExtractionSkillLanguage Nl = new KeyPhraseExtractionSkillLanguage("nl"); + + /// + /// Indicates language code "en" (for English) + /// + public static readonly KeyPhraseExtractionSkillLanguage En = new KeyPhraseExtractionSkillLanguage("en"); + + /// + /// Indicates language code "fi" (for Finnish) + /// + public static readonly KeyPhraseExtractionSkillLanguage Fi = new KeyPhraseExtractionSkillLanguage("fi"); + + /// + /// Indicates language code "fr" (for French) + /// + public static readonly KeyPhraseExtractionSkillLanguage Fr = new KeyPhraseExtractionSkillLanguage("fr"); + + /// + /// Indicates language code "de" (for German) + /// + public static readonly KeyPhraseExtractionSkillLanguage De = new KeyPhraseExtractionSkillLanguage("de"); + + /// + /// Indicates language code "it" (for Italian) + /// + public static readonly KeyPhraseExtractionSkillLanguage It = new KeyPhraseExtractionSkillLanguage("it"); + + /// + /// Indicates language code "ja" (for Japanese) + /// + public static readonly KeyPhraseExtractionSkillLanguage Ja = new KeyPhraseExtractionSkillLanguage("ja"); + + /// + /// Indicates language code "ko" (for Korean) + /// + public static readonly KeyPhraseExtractionSkillLanguage Ko = new KeyPhraseExtractionSkillLanguage("ko"); + + /// + /// Indicates language code "no" (for Norwegian) + /// + public static readonly KeyPhraseExtractionSkillLanguage No = new KeyPhraseExtractionSkillLanguage("no"); + + /// + /// Indicates language code "pl" (for Polish) + /// + public static readonly KeyPhraseExtractionSkillLanguage Pl = new KeyPhraseExtractionSkillLanguage("pl"); + + /// + /// Indicates language code "pt-PT" (for Portuguese (Portugal)) + /// + public static readonly KeyPhraseExtractionSkillLanguage PtPt = new KeyPhraseExtractionSkillLanguage("pt-PT"); + + /// + /// Indicates language code "pt-BR" (for Portuguese (Brazil)) + /// + public static readonly KeyPhraseExtractionSkillLanguage PtBr = new KeyPhraseExtractionSkillLanguage("pt-BR"); + + /// + /// Indicates language code "ru" (for Russian) + /// + public static readonly KeyPhraseExtractionSkillLanguage Ru = new KeyPhraseExtractionSkillLanguage("ru"); + + /// + /// Indicates language code "es" (for Spanish) + /// + public static readonly KeyPhraseExtractionSkillLanguage Es = new KeyPhraseExtractionSkillLanguage("es"); + + /// + /// Indicates language code "sv" (for Swedish) + /// + public static readonly KeyPhraseExtractionSkillLanguage Sv = new KeyPhraseExtractionSkillLanguage("sv"); + + private KeyPhraseExtractionSkillLanguage(string name) : base(name) + { + // Base class does all initialization. + } + + /// + /// Creates a new KeyPhraseExtractionSkillLanguage instance, or returns an existing instance. + /// + /// Supported language code. + /// A KeyPhraseExtractionSkillLanguage instance with the given name. + public static KeyPhraseExtractionSkillLanguage Create(string name) => Lookup(name) ?? new KeyPhraseExtractionSkillLanguage(name); + + /// + /// Defines implicit conversion from string to KeyPhraseExtractionSkillLanguage. + /// + /// string to convert. + /// The string as a KeyPhraseExtractionSkillLanguage. + public static implicit operator KeyPhraseExtractionSkillLanguage(string name) => Create(name); + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/NamedEntityRecognitionSkillLanguage.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/NamedEntityRecognitionSkillLanguage.cs new file mode 100644 index 000000000000..c993eb08e5b1 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/NamedEntityRecognitionSkillLanguage.cs @@ -0,0 +1,106 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Serialization; + + /// + /// Defines the format of NamedEntityRecognitionSkill supported language codes. + /// + [JsonConverter(typeof(ExtensibleEnumConverter))] + public sealed class NamedEntityRecognitionSkillLanguage : ExtensibleEnum + { + /// + /// Indicates language code "ar" (for Arabic) + /// + public static readonly NamedEntityRecognitionSkillLanguage Ar = new NamedEntityRecognitionSkillLanguage("ar"); + + /// + /// Indicates language code "cs" (for Czech) + /// + public static readonly NamedEntityRecognitionSkillLanguage Cs = new NamedEntityRecognitionSkillLanguage("cs"); + + /// + /// Indicates language code "da" (for Danish) + /// + public static readonly NamedEntityRecognitionSkillLanguage Da = new NamedEntityRecognitionSkillLanguage("da"); + + /// + /// Indicates language code "de" (for German) + /// + public static readonly NamedEntityRecognitionSkillLanguage De = new NamedEntityRecognitionSkillLanguage("de"); + + /// + /// Indicates language code "en" (for English) + /// + public static readonly NamedEntityRecognitionSkillLanguage En = new NamedEntityRecognitionSkillLanguage("en"); + + /// + /// Indicates language code "es" (for Spanish) + /// + public static readonly NamedEntityRecognitionSkillLanguage Es = new NamedEntityRecognitionSkillLanguage("es"); + + /// + /// Indicates language code "fi" (for Finnish) + /// + public static readonly NamedEntityRecognitionSkillLanguage Fi = new NamedEntityRecognitionSkillLanguage("fi"); + + /// + /// Indicates language code "fr" (for French) + /// + public static readonly NamedEntityRecognitionSkillLanguage Fr = new NamedEntityRecognitionSkillLanguage("fr"); + + /// + /// Indicates language code "he" (for Hebrew) + /// + public static readonly NamedEntityRecognitionSkillLanguage He = new NamedEntityRecognitionSkillLanguage("he"); + + /// + /// Indicates language code "hu" (for Hungarian) + /// + public static readonly NamedEntityRecognitionSkillLanguage Hu = new NamedEntityRecognitionSkillLanguage("hu"); + + /// + /// Indicates language code "it" (for Italian) + /// + public static readonly NamedEntityRecognitionSkillLanguage It = new NamedEntityRecognitionSkillLanguage("it"); + + /// + /// Indicates language code "ko" (for Korean) + /// + public static readonly NamedEntityRecognitionSkillLanguage Ko = new NamedEntityRecognitionSkillLanguage("ko"); + + /// + /// Indicates language code "pt-br" (for Portuguese (Brazil)) + /// + public static readonly NamedEntityRecognitionSkillLanguage PtBr = new NamedEntityRecognitionSkillLanguage("pt-br"); + + /// + /// Indicates language code "pt" (for Portuguese) + /// + public static readonly NamedEntityRecognitionSkillLanguage Pt = new NamedEntityRecognitionSkillLanguage("pt"); + + private NamedEntityRecognitionSkillLanguage(string name) : base(name) + { + // Base class does all initialization. + } + + /// + /// Creates a new NamedEntityRecognitionSkillLanguage instance, or returns an existing instance. + /// + /// Supported language code. + /// A NamedEntityRecognitionSkillLanguage instance with the given name. + public static NamedEntityRecognitionSkillLanguage Create(string name) => Lookup(name) ?? new NamedEntityRecognitionSkillLanguage(name); + + /// + /// Defines implicit conversion from string to NamedEntityRecognitionSkillLanguage. + /// + /// string to convert. + /// The string as a NamedEntityRecognitionSkillLanguage. + public static implicit operator NamedEntityRecognitionSkillLanguage(string name) => Create(name); + } +} + diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/OcrSkillLanguage.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/OcrSkillLanguage.cs new file mode 100644 index 000000000000..b50f42726164 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/OcrSkillLanguage.cs @@ -0,0 +1,166 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Serialization; + + /// + /// Defines the format of OcrSkill supported language codes. + /// + [JsonConverter(typeof(ExtensibleEnumConverter))] + public sealed class OcrSkillLanguage : ExtensibleEnum + { + /// + /// Indicates language code "zh-Hans" (for Chinese Simplified) + /// + public static readonly OcrSkillLanguage ZhHans = new OcrSkillLanguage("zh-Hans"); + + /// + /// Indicates language code "zh-Hant" (for Chinese Traditional) + /// + public static readonly OcrSkillLanguage ZhHant = new OcrSkillLanguage("zh-Hant"); + + /// + /// Indicates language code "cs" (for Czech) + /// + public static readonly OcrSkillLanguage Cs = new OcrSkillLanguage("cs"); + + /// + /// Indicates language code "da" (for Danish) + /// + public static readonly OcrSkillLanguage Da = new OcrSkillLanguage("da"); + + /// + /// Indicates language code "nl" (for Dutch) + /// + public static readonly OcrSkillLanguage Nl = new OcrSkillLanguage("nl"); + + /// + /// Indicates language code "en" (for English) + /// + public static readonly OcrSkillLanguage En = new OcrSkillLanguage("en"); + + /// + /// Indicates language code "fi" (for Finnish) + /// + public static readonly OcrSkillLanguage Fi = new OcrSkillLanguage("fi"); + + /// + /// Indicates language code "fr" (for French) + /// + public static readonly OcrSkillLanguage Fr = new OcrSkillLanguage("fr"); + + /// + /// Indicates language code "de" (for German) + /// + public static readonly OcrSkillLanguage De = new OcrSkillLanguage("de"); + + /// + /// Indicates language code "el" (for Greek) + /// + public static readonly OcrSkillLanguage El = new OcrSkillLanguage("el"); + + /// + /// Indicates language code "hu" (for Hungarian) + /// + public static readonly OcrSkillLanguage Hu = new OcrSkillLanguage("hu"); + + /// + /// Indicates language code "it" (for Italian) + /// + public static readonly OcrSkillLanguage It = new OcrSkillLanguage("it"); + + /// + /// Indicates language code "ja" (for Japanese) + /// + public static readonly OcrSkillLanguage Ja = new OcrSkillLanguage("ja"); + + /// + /// Indicates language code "ko" (for Korean) + /// + public static readonly OcrSkillLanguage Ko = new OcrSkillLanguage("ko"); + + /// + /// Indicates language code "nb" (for Norwegian) + /// + public static readonly OcrSkillLanguage No = new OcrSkillLanguage("nb"); + + /// + /// Indicates language code "pl" (for Polish) + /// + public static readonly OcrSkillLanguage Pl = new OcrSkillLanguage("pl"); + + /// + /// Indicates language code "pt" (for Portuguese) + /// + public static readonly OcrSkillLanguage Pt = new OcrSkillLanguage("pt"); + + /// + /// Indicates language code "ru" (for Russian) + /// + public static readonly OcrSkillLanguage Ru = new OcrSkillLanguage("ru"); + + /// + /// Indicates language code "es" (for Spanish) + /// + public static readonly OcrSkillLanguage Es = new OcrSkillLanguage("es"); + + /// + /// Indicates language code "sv" (for Swedish) + /// + public static readonly OcrSkillLanguage Sv = new OcrSkillLanguage("sv"); + + /// + /// Indicates language code "tr" (for Turkish) + /// + public static readonly OcrSkillLanguage Tr = new OcrSkillLanguage("tr"); + + /// + /// Indicates language code "ar" (for Arabic) + /// + public static readonly OcrSkillLanguage Ar = new OcrSkillLanguage("ar"); + + /// + /// Indicates language code "ro" (for Romanian) + /// + public static readonly OcrSkillLanguage Ro = new OcrSkillLanguage("ro"); + + /// + /// Indicates language code "sr-Cyrl" (for Serbian Cyrillic) + /// + public static readonly OcrSkillLanguage SrCyrl = new OcrSkillLanguage("sr-Cyrl"); + + /// + /// Indicates language code "sr-Latn" (for Serbian Latin) + /// + public static readonly OcrSkillLanguage SrLatn = new OcrSkillLanguage("sr-Latn"); + + /// + /// Indicates language code "sk" (for Slovak) + /// + public static readonly OcrSkillLanguage Sk = new OcrSkillLanguage("sk"); + + private OcrSkillLanguage(string name) : base(name) + { + // Base class does all initialization. + } + + /// + /// Creates a new OcrSkillLanguage instance, or returns an existing instance. + /// + /// Supported language code. + /// A OcrSkillLanguage instance with the given name. + public static OcrSkillLanguage Create(string name) => Lookup(name) ?? new OcrSkillLanguage(name); + + /// + /// Defines implicit conversion from string to OcrSkillLanguage. + /// + /// string to convert. + /// The string as a OcrSkillLanguage. + public static implicit operator OcrSkillLanguage(string name) => Create(name); + } +} + diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/SentimentSkillLanguage.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/SentimentSkillLanguage.cs new file mode 100644 index 000000000000..1ac7e4e9e42f --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/SentimentSkillLanguage.cs @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Serialization; + + /// + /// Defines the format of SentimentSkill supported language codes. + /// + [JsonConverter(typeof(ExtensibleEnumConverter))] + public sealed class SentimentSkillLanguage : ExtensibleEnum + { + /// + /// Indicates language code "da" (for Danish) + /// + public static readonly SentimentSkillLanguage Da = new SentimentSkillLanguage("da"); + + /// + /// Indicates language code "nl" (for Dutch) + /// + public static readonly SentimentSkillLanguage Nl = new SentimentSkillLanguage("nl"); + + /// + /// Indicates language code "en" (for English) + /// + public static readonly SentimentSkillLanguage En = new SentimentSkillLanguage("en"); + + /// + /// Indicates language code "fi" (for Finnish) + /// + public static readonly SentimentSkillLanguage Fi = new SentimentSkillLanguage("fi"); + + /// + /// Indicates language code "fr" (for French) + /// + public static readonly SentimentSkillLanguage Fr = new SentimentSkillLanguage("fr"); + + /// + /// Indicates language code "de" (for German) + /// + public static readonly SentimentSkillLanguage De = new SentimentSkillLanguage("de"); + + /// + /// Indicates language code "el" (for Greek) + /// + public static readonly SentimentSkillLanguage El = new SentimentSkillLanguage("el"); + + /// + /// Indicates language code "it" (for Italian) + /// + public static readonly SentimentSkillLanguage It = new SentimentSkillLanguage("it"); + + /// + /// Indicates language code "no" (for Norwegian) + /// + public static readonly SentimentSkillLanguage No = new SentimentSkillLanguage("no"); + + /// + /// Indicates language code "pl" (for Polish) + /// + public static readonly SentimentSkillLanguage Pl = new SentimentSkillLanguage("pl"); + + /// + /// Indicates language code "pt-PT" (for Portuguese) + /// + public static readonly SentimentSkillLanguage PtPt = new SentimentSkillLanguage("pt-PT"); + + /// + /// Indicates language code "ru" (for Russian) + /// + public static readonly SentimentSkillLanguage Ru = new SentimentSkillLanguage("ru"); + + /// + /// Indicates language code "es" (for Spanish) + /// + public static readonly SentimentSkillLanguage Es = new SentimentSkillLanguage("es"); + + /// + /// Indicates language code "sv" (for Swedish) + /// + public static readonly SentimentSkillLanguage Sv = new SentimentSkillLanguage("sv"); + + /// + /// Indicates language code "tr" (for Turkish) + /// + public static readonly SentimentSkillLanguage Tr = new SentimentSkillLanguage("tr"); + + private SentimentSkillLanguage(string name) : base(name) + { + // Base class does all initialization. + } + + /// + /// Creates a new SentimentSkillLanguage instance, or returns an existing instance. + /// + /// Supported language code. + /// A SentimentSkillLanguage instance with the given name. + public static SentimentSkillLanguage Create(string name) => Lookup(name) ?? new SentimentSkillLanguage(name); + + /// + /// Defines implicit conversion from string to SentimentSkillLanguage. + /// + /// string to convert. + /// The string as a SentimentSkillLanguage. + public static implicit operator SentimentSkillLanguage(string name) => Create(name); + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/Skillset.Customization.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/Skillset.Customization.cs new file mode 100644 index 000000000000..f14f0d39f0c9 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/Skillset.Customization.cs @@ -0,0 +1,10 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Models +{ + public partial class Skillset : IResourceWithETag + { + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/SplitSkillLanguage.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/SplitSkillLanguage.cs new file mode 100644 index 000000000000..88087b14e8ac --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/Models/SplitSkillLanguage.cs @@ -0,0 +1,81 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Serialization; + + /// + /// Defines the format of SplitSkill supported language codes. + /// + [JsonConverter(typeof(ExtensibleEnumConverter))] + public sealed class SplitSkillLanguage : ExtensibleEnum + { + /// + /// Indicates language code "da" (for Danish) + /// + public static readonly SplitSkillLanguage Da = new SplitSkillLanguage("da"); + + /// + /// Indicates language code "de" (for German) + /// + public static readonly SplitSkillLanguage De = new SplitSkillLanguage("de"); + + /// + /// Indicates language code "en" (for English) + /// + public static readonly SplitSkillLanguage En = new SplitSkillLanguage("en"); + + /// + /// Indicates language code "es" (for Spanish) + /// + public static readonly SplitSkillLanguage Es = new SplitSkillLanguage("es"); + + /// + /// Indicates language code "fi" (for Finnish) + /// + public static readonly SplitSkillLanguage Fi = new SplitSkillLanguage("fi"); + + /// + /// Indicates language code "fr" (for French) + /// + public static readonly SplitSkillLanguage Fr = new SplitSkillLanguage("fr"); + + /// + /// Indicates language code "it" (for Italian) + /// + public static readonly SplitSkillLanguage It = new SplitSkillLanguage("it"); + + /// + /// Indicates language code "ko" (for Korean) + /// + public static readonly SplitSkillLanguage Ko = new SplitSkillLanguage("ko"); + + /// + /// Indicates language code "pt" (for Portuguese) + /// + public static readonly SplitSkillLanguage Pt = new SplitSkillLanguage("pt"); + + private SplitSkillLanguage(string name) : base(name) + { + // Base class does all initialization. + } + + /// + /// Creates a new SplitSkillLanguage instance, or returns an existing instance. + /// + /// Supported language code. + /// A SplitSkillLanguage instance with the given name. + public static SplitSkillLanguage Create(string name) => Lookup(name) ?? new SplitSkillLanguage(name); + + /// + /// Defines implicit conversion from string to SplitSkillLanguage. + /// + /// string to convert. + /// The string as a SplitSkillLanguage. + public static implicit operator SplitSkillLanguage(string name) => Create(name); + } +} + diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/SkillsetsOperations.Customization.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/SkillsetsOperations.Customization.cs new file mode 100644 index 000000000000..2a907500fce3 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/SkillsetsOperations.Customization.cs @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search +{ + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest.Azure; + using Models; + + internal partial class SkillsetsOperations + { + /// + public Task> CreateOrUpdateWithHttpMessagesAsync(Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), AccessCondition accessCondition = default(AccessCondition), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + return CreateOrUpdateWithHttpMessagesAsync(skillset?.Name, skillset, searchRequestOptions, customHeaders, cancellationToken); + } + + /// + public Task> ExistsWithHttpMessagesAsync( + string skillsetName, + SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), + Dictionary> customHeaders = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + return ExistsHelper.ExistsFromGetResponse(() => + this.GetWithHttpMessagesAsync(skillsetName, searchRequestOptions, customHeaders, cancellationToken)); + } + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/SkillsetsOperationsExtensions.Customization.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/SkillsetsOperationsExtensions.Customization.cs new file mode 100644 index 000000000000..d22c58e3c8b5 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Customizations/Skillsets/SkillsetsOperationsExtensions.Customization.cs @@ -0,0 +1,116 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search +{ + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Azure.Search.Models; + using Microsoft.Rest.Azure; + + /// + /// Operations for managing skillsets. + /// + public static partial class SkillsetsOperationsExtensions + { + /// + /// Creates a new Azure Search skillset or updates a skillset if it + /// already exists. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The definition of the skillset to create or update. + /// + /// + /// Additional parameters for the operation + /// + /// + /// Additional parameters for the operation + /// + public static Skillset CreateOrUpdate(this ISkillsetsOperations operations, Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), AccessCondition accessCondition = default(AccessCondition)) + { + return operations.CreateOrUpdateAsync(skillset, searchRequestOptions, accessCondition).GetAwaiter().GetResult(); + } + + /// + /// Creates a new Azure Search skillset or updates a skillset if it + /// already exists. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The definition of the skillset to create or update. + /// + /// + /// Additional parameters for the operation + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ISkillsetsOperations operations, Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), AccessCondition accessCondition = default(AccessCondition), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(skillset, searchRequestOptions, accessCondition, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Determines whether or not the given skillset exists in the Azure Search service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the skillset. + /// + /// + /// Additional parameters for the operation + /// + /// + /// true if the skillset exists; false otherwise. + /// + public static bool Exists( + this ISkillsetsOperations operations, + string skillsetName, + SearchRequestOptions searchRequestOptions = default(SearchRequestOptions)) + { + return operations.ExistsAsync(skillsetName, searchRequestOptions).GetAwaiter().GetResult(); + } + + /// + /// Determines whether or not the given skillset exists in the Azure Search service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the skillset. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + /// + /// true if the skillset exists; false otherwise. + /// + public static async Task ExistsAsync( + this ISkillsetsOperations operations, + string skillsetName, + SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), + CancellationToken cancellationToken = default(CancellationToken)) + { + AzureOperationResponse result = await operations.ExistsWithHttpMessagesAsync(skillsetName, searchRequestOptions, null, cancellationToken).ConfigureAwait(false); + return result.Body; + } + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/ISearchServiceClient.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/ISearchServiceClient.cs index 549b76cefb76..56ac52d739f8 100644 --- a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/ISearchServiceClient.cs +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/ISearchServiceClient.cs @@ -88,6 +88,11 @@ public partial interface ISearchServiceClient : System.IDisposable /// IIndexersOperations Indexers { get; } + /// + /// Gets the ISkillsetsOperations. + /// + ISkillsetsOperations Skillsets { get; } + /// /// Gets the ISynonymMapsOperations. /// diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/ISkillsetsOperations.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/ISkillsetsOperations.cs new file mode 100644 index 000000000000..5f85167bb6ed --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/ISkillsetsOperations.cs @@ -0,0 +1,156 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SkillsetsOperations operations. + /// + public partial interface ISkillsetsOperations + { + /// + /// Retrieves a cognitive skillset in an Azure Search service. + /// + /// + /// + /// The name of the skillset to retrieve. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The 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 + /// + Task> GetWithHttpMessagesAsync(string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates a new cognitive skillset in an Azure Search service. + /// + /// + /// + /// The name of the skillset to create or update. + /// + /// + /// The skillset containing one or more cognitive skills to create or + /// update in an Azure Search service. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The 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 + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string skillsetName, Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a cognitive skillset in an Azure Search service. + /// + /// + /// + /// The name of the skillset to delete. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List all cognitive skillsets in an Azure Search service. + /// + /// + /// + /// Additional parameters for the operation + /// + /// + /// The 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 + /// + Task> ListWithHttpMessagesAsync(SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates a new cognitive skillset in an Azure Search service. + /// + /// + /// + /// The skillset containing one or more cognitive skills to create in + /// an Azure Search service. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The 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 + /// + Task> CreateWithHttpMessagesAsync(Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ImageAnalysisSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ImageAnalysisSkill.cs new file mode 100644 index 000000000000..bbdfd0f0502c --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ImageAnalysisSkill.cs @@ -0,0 +1,99 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill that analyzes image files. It extracts a rich set of visual + /// features based on the image content. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Vision.ImageAnalysisSkill")] + public partial class ImageAnalysisSkill : Skill + { + /// + /// Initializes a new instance of the ImageAnalysisSkill class. + /// + public ImageAnalysisSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ImageAnalysisSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// A value indicating which language + /// code to use. Default is en. + /// A list of visual features. + /// A string indicating which domain-specific + /// details to return. + public ImageAnalysisSkill(string description, string context, IList inputs, IList outputs, ImageAnalysisSkillLanguage defaultLanguageCode = default(ImageAnalysisSkillLanguage), IList visualFeatures = default(IList), IList details = default(IList)) + : base(description, context, inputs, outputs) + { + DefaultLanguageCode = defaultLanguageCode; + VisualFeatures = visualFeatures; + Details = details; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a value indicating which language code to use. Default + /// is en. + /// + [JsonProperty(PropertyName = "defaultLanguageCode")] + public ImageAnalysisSkillLanguage DefaultLanguageCode { get; set; } + + /// + /// Gets or sets a list of visual features. + /// + [JsonProperty(PropertyName = "visualFeatures")] + public IList VisualFeatures { get; set; } + + /// + /// Gets or sets a string indicating which domain-specific details to + /// return. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ImageDetail.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ImageDetail.cs new file mode 100644 index 000000000000..8aabf58f90cb --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ImageDetail.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ImageDetail. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ImageDetail + { + [EnumMember(Value = "celebrities")] + Celebrities, + [EnumMember(Value = "landmarks")] + Landmarks + } + internal static class ImageDetailEnumExtension + { + internal static string ToSerializedValue(this ImageDetail? value) + { + return value == null ? null : ((ImageDetail)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this ImageDetail value) + { + switch( value ) + { + case ImageDetail.Celebrities: + return "celebrities"; + case ImageDetail.Landmarks: + return "landmarks"; + } + return null; + } + + internal static ImageDetail? ParseImageDetail(this string value) + { + switch( value ) + { + case "celebrities": + return ImageDetail.Celebrities; + case "landmarks": + return ImageDetail.Landmarks; + } + return null; + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Indexer.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Indexer.cs index cf600c505f91..bc880cc50cd9 100644 --- a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Indexer.cs +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Indexer.cs @@ -41,22 +41,28 @@ public Indexer() /// The name of the index to which this /// indexer writes data. /// The description of the indexer. + /// The name of the cognitive skillset + /// executing with this indexer. /// The schedule for this indexer. /// Parameters for indexer execution. /// Defines mappings between fields in the /// data source and corresponding target fields in the index. + /// Output field mappings are applied + /// after enrichment and immediately before indexing. /// A value indicating whether the indexer is /// disabled. Default is false. /// The ETag of the Indexer. - public Indexer(string name, string dataSourceName, string targetIndexName, string description = default(string), IndexingSchedule schedule = default(IndexingSchedule), IndexingParameters parameters = default(IndexingParameters), IList fieldMappings = default(IList), bool? isDisabled = default(bool?), string eTag = default(string)) + public Indexer(string name, string dataSourceName, string targetIndexName, string description = default(string), string skillsetName = default(string), IndexingSchedule schedule = default(IndexingSchedule), IndexingParameters parameters = default(IndexingParameters), IList fieldMappings = default(IList), IList outputFieldMappings = default(IList), bool? isDisabled = default(bool?), string eTag = default(string)) { Name = name; Description = description; DataSourceName = dataSourceName; + SkillsetName = skillsetName; TargetIndexName = targetIndexName; Schedule = schedule; Parameters = parameters; FieldMappings = fieldMappings; + OutputFieldMappings = outputFieldMappings; IsDisabled = isDisabled; ETag = eTag; CustomInit(); @@ -86,6 +92,13 @@ public Indexer() [JsonProperty(PropertyName = "dataSourceName")] public string DataSourceName { get; set; } + /// + /// Gets or sets the name of the cognitive skillset executing with this + /// indexer. + /// + [JsonProperty(PropertyName = "skillsetName")] + public string SkillsetName { get; set; } + /// /// Gets or sets the name of the index to which this indexer writes /// data. @@ -112,6 +125,13 @@ public Indexer() [JsonProperty(PropertyName = "fieldMappings")] public IList FieldMappings { get; set; } + /// + /// Gets or sets output field mappings are applied after enrichment and + /// immediately before indexing. + /// + [JsonProperty(PropertyName = "outputFieldMappings")] + public IList OutputFieldMappings { get; set; } + /// /// Gets or sets a value indicating whether the indexer is disabled. /// Default is false. @@ -159,6 +179,16 @@ public virtual void Validate() } } } + if (OutputFieldMappings != null) + { + foreach (var element1 in OutputFieldMappings) + { + if (element1 != null) + { + element1.Validate(); + } + } + } } } } diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/InputFieldMappingEntry.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/InputFieldMappingEntry.cs new file mode 100644 index 000000000000..da353e5644cf --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/InputFieldMappingEntry.cs @@ -0,0 +1,77 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Input field mapping for a skill. + /// + public partial class InputFieldMappingEntry + { + /// + /// Initializes a new instance of the InputFieldMappingEntry class. + /// + public InputFieldMappingEntry() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the InputFieldMappingEntry class. + /// + /// The name of the input. + /// The source of the input. + public InputFieldMappingEntry(string name, string source) + { + Name = name; + Source = source; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the input. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the source of the input. + /// + [JsonProperty(PropertyName = "source")] + public string Source { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Source == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Source"); + } + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/KeyPhraseExtractionSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/KeyPhraseExtractionSkill.cs new file mode 100644 index 000000000000..fdda8e660af6 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/KeyPhraseExtractionSkill.cs @@ -0,0 +1,91 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill that uses text analytics for key phrase extraction. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.KeyPhraseExtractionSkill")] + public partial class KeyPhraseExtractionSkill : Skill + { + /// + /// Initializes a new instance of the KeyPhraseExtractionSkill class. + /// + public KeyPhraseExtractionSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the KeyPhraseExtractionSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// A value indicating which language + /// code to use. Default is en. + /// A number indicating how many key + /// phrases to return. If absent, all identified key phrases will be + /// returned. + public KeyPhraseExtractionSkill(string description, string context, IList inputs, IList outputs, KeyPhraseExtractionSkillLanguage defaultLanguageCode = default(KeyPhraseExtractionSkillLanguage), int? maxKeyPhraseCount = default(int?)) + : base(description, context, inputs, outputs) + { + DefaultLanguageCode = defaultLanguageCode; + MaxKeyPhraseCount = maxKeyPhraseCount; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a value indicating which language code to use. Default + /// is en. + /// + [JsonProperty(PropertyName = "defaultLanguageCode")] + public KeyPhraseExtractionSkillLanguage DefaultLanguageCode { get; set; } + + /// + /// Gets or sets a number indicating how many key phrases to return. If + /// absent, all identified key phrases will be returned. + /// + [JsonProperty(PropertyName = "maxKeyPhraseCount")] + public int? MaxKeyPhraseCount { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/LanguageDetectionSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/LanguageDetectionSkill.cs new file mode 100644 index 000000000000..7e97f63b6353 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/LanguageDetectionSkill.cs @@ -0,0 +1,72 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill that detects the language of input text and reports a single + /// language code for every document submitted on the request. The language + /// code is paired with a score indicating the confidence of the analysis. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.LanguageDetectionSkill")] + public partial class LanguageDetectionSkill : Skill + { + /// + /// Initializes a new instance of the LanguageDetectionSkill class. + /// + public LanguageDetectionSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LanguageDetectionSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + public LanguageDetectionSkill(string description, string context, IList inputs, IList outputs) + : base(description, context, inputs, outputs) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/MergeSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/MergeSkill.cs new file mode 100644 index 000000000000..036bf5f7efe9 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/MergeSkill.cs @@ -0,0 +1,91 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill for merging two or more strings into a single unified string, + /// with an optional user-defined delimiter separating each component part. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.MergeSkill")] + public partial class MergeSkill : Skill + { + /// + /// Initializes a new instance of the MergeSkill class. + /// + public MergeSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the MergeSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// The tag indicates the start of the + /// merged text. By default, the tag is an empty space. + /// The tag indicates the end of the merged + /// text. By default, the tag is an empty space. + public MergeSkill(string description, string context, IList inputs, IList outputs, string insertPreTag = default(string), string insertPostTag = default(string)) + : base(description, context, inputs, outputs) + { + InsertPreTag = insertPreTag; + InsertPostTag = insertPostTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the tag indicates the start of the merged text. By + /// default, the tag is an empty space. + /// + [JsonProperty(PropertyName = "insertPreTag")] + public string InsertPreTag { get; set; } + + /// + /// Gets or sets the tag indicates the end of the merged text. By + /// default, the tag is an empty space. + /// + [JsonProperty(PropertyName = "insertPostTag")] + public string InsertPostTag { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/NamedEntityCategory.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/NamedEntityCategory.cs new file mode 100644 index 000000000000..ef5347eab9af --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/NamedEntityCategory.cs @@ -0,0 +1,66 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for NamedEntityCategory. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum NamedEntityCategory + { + [EnumMember(Value = "location")] + Location, + [EnumMember(Value = "organization")] + Organization, + [EnumMember(Value = "person")] + Person + } + internal static class NamedEntityCategoryEnumExtension + { + internal static string ToSerializedValue(this NamedEntityCategory? value) + { + return value == null ? null : ((NamedEntityCategory)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this NamedEntityCategory value) + { + switch( value ) + { + case NamedEntityCategory.Location: + return "location"; + case NamedEntityCategory.Organization: + return "organization"; + case NamedEntityCategory.Person: + return "person"; + } + return null; + } + + internal static NamedEntityCategory? ParseNamedEntityCategory(this string value) + { + switch( value ) + { + case "location": + return NamedEntityCategory.Location; + case "organization": + return NamedEntityCategory.Organization; + case "person": + return NamedEntityCategory.Person; + } + return null; + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/NamedEntityRecognitionSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/NamedEntityRecognitionSkill.cs new file mode 100644 index 000000000000..bf77a0c8155e --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/NamedEntityRecognitionSkill.cs @@ -0,0 +1,100 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Text analytics named entity recognition. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.NamedEntityRecognitionSkill")] + public partial class NamedEntityRecognitionSkill : Skill + { + /// + /// Initializes a new instance of the NamedEntityRecognitionSkill + /// class. + /// + public NamedEntityRecognitionSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NamedEntityRecognitionSkill + /// class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// A list of named entity categories. + /// A value indicating which language + /// code to use. Default is en. + /// A value between 0 and 1 to indicate + /// the confidence of the results. + public NamedEntityRecognitionSkill(string description, string context, IList inputs, IList outputs, IList categories = default(IList), NamedEntityRecognitionSkillLanguage defaultLanguageCode = default(NamedEntityRecognitionSkillLanguage), double? minimumPrecision = default(double?)) + : base(description, context, inputs, outputs) + { + Categories = categories; + DefaultLanguageCode = defaultLanguageCode; + MinimumPrecision = minimumPrecision; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a list of named entity categories. + /// + [JsonProperty(PropertyName = "categories")] + public IList Categories { get; set; } + + /// + /// Gets or sets a value indicating which language code to use. Default + /// is en. + /// + [JsonProperty(PropertyName = "defaultLanguageCode")] + public NamedEntityRecognitionSkillLanguage DefaultLanguageCode { get; set; } + + /// + /// Gets or sets a value between 0 and 1 to indicate the confidence of + /// the results. + /// + [JsonProperty(PropertyName = "minimumPrecision")] + public double? MinimumPrecision { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/OcrSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/OcrSkill.cs new file mode 100644 index 000000000000..26999172233b --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/OcrSkill.cs @@ -0,0 +1,102 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill that extracts text from image files. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Vision.OcrSkill")] + public partial class OcrSkill : Skill + { + /// + /// Initializes a new instance of the OcrSkill class. + /// + public OcrSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OcrSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// A value indicating which + /// algorithm to use for extracting text. Default is printed. Possible + /// values include: 'printed', 'handwritten' + /// A value indicating which language + /// code to use. Default is en. + /// A value indicating to turn + /// orientation detection on or not. Default is false. + public OcrSkill(string description, string context, IList inputs, IList outputs, TextExtractionAlgorithm? textExtractionAlgorithm = default(TextExtractionAlgorithm?), OcrSkillLanguage defaultLanguageCode = default(OcrSkillLanguage), bool? shouldDetectOrientation = default(bool?)) + : base(description, context, inputs, outputs) + { + TextExtractionAlgorithm = textExtractionAlgorithm; + DefaultLanguageCode = defaultLanguageCode; + ShouldDetectOrientation = shouldDetectOrientation; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a value indicating which algorithm to use for + /// extracting text. Default is printed. Possible values include: + /// 'printed', 'handwritten' + /// + [JsonProperty(PropertyName = "textExtractionAlgorithm")] + public TextExtractionAlgorithm? TextExtractionAlgorithm { get; set; } + + /// + /// Gets or sets a value indicating which language code to use. Default + /// is en. + /// + [JsonProperty(PropertyName = "defaultLanguageCode")] + public OcrSkillLanguage DefaultLanguageCode { get; set; } + + /// + /// Gets or sets a value indicating to turn orientation detection on or + /// not. Default is false. + /// + [JsonProperty(PropertyName = "detectOrientation")] + public bool? ShouldDetectOrientation { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/OutputFieldMappingEntry.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/OutputFieldMappingEntry.cs new file mode 100644 index 000000000000..e84f76747e11 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/OutputFieldMappingEntry.cs @@ -0,0 +1,79 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Output field mapping for a skill. + /// + /// + public partial class OutputFieldMappingEntry + { + /// + /// Initializes a new instance of the OutputFieldMappingEntry class. + /// + public OutputFieldMappingEntry() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OutputFieldMappingEntry class. + /// + /// The name of the output defined by the + /// skill. + /// The target name of the output. It is + /// optional and default to name. + public OutputFieldMappingEntry(string name, string targetName = default(string)) + { + Name = name; + TargetName = targetName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the output defined by the skill. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the target name of the output. It is optional and + /// default to name. + /// + [JsonProperty(PropertyName = "targetName")] + public string TargetName { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SentimentSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SentimentSkill.cs new file mode 100644 index 000000000000..b46c04c51436 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SentimentSkill.cs @@ -0,0 +1,81 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Text analytics positive-negative sentiment analysis, scored as a + /// floating point value in a range of zero to 1. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.SentimentSkill")] + public partial class SentimentSkill : Skill + { + /// + /// Initializes a new instance of the SentimentSkill class. + /// + public SentimentSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SentimentSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// A value indicating which language + /// code to use. Default is en. + public SentimentSkill(string description, string context, IList inputs, IList outputs, SentimentSkillLanguage defaultLanguageCode = default(SentimentSkillLanguage)) + : base(description, context, inputs, outputs) + { + DefaultLanguageCode = defaultLanguageCode; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a value indicating which language code to use. Default + /// is en. + /// + [JsonProperty(PropertyName = "defaultLanguageCode")] + public SentimentSkillLanguage DefaultLanguageCode { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ShaperSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ShaperSkill.cs new file mode 100644 index 000000000000..833f69195efc --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/ShaperSkill.cs @@ -0,0 +1,71 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill for reshaping the outputs. It creates a complex type to support + /// composite fields (also known as multipart fields). + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Util.ShaperSkill")] + public partial class ShaperSkill : Skill + { + /// + /// Initializes a new instance of the ShaperSkill class. + /// + public ShaperSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ShaperSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + public ShaperSkill(string description, string context, IList inputs, IList outputs) + : base(description, context, inputs, outputs) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Skill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Skill.cs new file mode 100644 index 000000000000..cd67fc0b1c5d --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Skill.cs @@ -0,0 +1,138 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Abstract base class for skills. + /// + /// + public partial class Skill + { + /// + /// Initializes a new instance of the Skill class. + /// + public Skill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Skill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + public Skill(string description, string context, IList inputs, IList outputs) + { + Description = description; + Context = context; + Inputs = inputs; + Outputs = outputs; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the description of the skill which describes the + /// inputs, outputs, and usage of the skill. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Gets or sets represents the level at which operations take place, + /// such as the document root or document content (for example, + /// /document or /document/content). + /// + [JsonProperty(PropertyName = "context")] + public string Context { get; set; } + + /// + /// Gets or sets inputs of the skills could be a column in the source + /// data set, or the output of an upstream skill. + /// + [JsonProperty(PropertyName = "inputs")] + public IList Inputs { get; set; } + + /// + /// Gets or sets the output of a skill is either a field in an Azure + /// Search index, or a value that can be consumed as an input by + /// another skill. + /// + [JsonProperty(PropertyName = "outputs")] + public IList Outputs { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Description == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Description"); + } + if (Context == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Context"); + } + if (Inputs == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Inputs"); + } + if (Outputs == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Outputs"); + } + if (Inputs != null) + { + foreach (var element in Inputs) + { + if (element != null) + { + element.Validate(); + } + } + } + if (Outputs != null) + { + foreach (var element1 in Outputs) + { + if (element1 != null) + { + element1.Validate(); + } + } + } + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Skillset.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Skillset.cs new file mode 100644 index 000000000000..a6f5971091d7 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/Skillset.cs @@ -0,0 +1,112 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A list of cognitive skills. + /// + /// + public partial class Skillset + { + /// + /// Initializes a new instance of the Skillset class. + /// + public Skillset() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Skillset class. + /// + /// The name of the skillset. + /// The description of the skillset. + /// A list of skills in the skillset. + /// The ETag of the skillset. + public Skillset(string name, string description, IList skills, string eTag = default(string)) + { + Name = name; + Description = description; + Skills = skills; + ETag = eTag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the skillset. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the description of the skillset. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Gets or sets a list of skills in the skillset. + /// + [JsonProperty(PropertyName = "skills")] + public IList Skills { get; set; } + + /// + /// Gets or sets the ETag of the skillset. + /// + [JsonProperty(PropertyName = "@odata.etag")] + public string ETag { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Description == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Description"); + } + if (Skills == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Skills"); + } + if (Skills != null) + { + foreach (var element in Skills) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SkillsetListResult.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SkillsetListResult.cs new file mode 100644 index 000000000000..5ce7861923f7 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SkillsetListResult.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Response from a list Skillset request. If successful, it includes the + /// full definitions of all skillsets. + /// + public partial class SkillsetListResult + { + /// + /// Initializes a new instance of the SkillsetListResult class. + /// + public SkillsetListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SkillsetListResult class. + /// + /// The skillsets defined in the Search + /// service. + public SkillsetListResult(IList skillsets = default(IList)) + { + Skillsets = skillsets; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the skillsets defined in the Search service. + /// + [JsonProperty(PropertyName = "value")] + public IList Skillsets { get; private set; } + + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SplitSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SplitSkill.cs new file mode 100644 index 000000000000..2243fc1b0e43 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/SplitSkill.cs @@ -0,0 +1,99 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill to split a string into chunks of text. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Text.SplitSkill")] + public partial class SplitSkill : Skill + { + /// + /// Initializes a new instance of the SplitSkill class. + /// + public SplitSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SplitSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// A value indicating which language + /// code to use. Default is en. + /// A value indicating which split mode to + /// perform. Possible values include: 'pages', 'sentences' + /// The desired maximum page length. + /// Default is 10000. + public SplitSkill(string description, string context, IList inputs, IList outputs, SplitSkillLanguage defaultLanguageCode = default(SplitSkillLanguage), TextSplitMode? textSplitMode = default(TextSplitMode?), int? maximumPageLength = default(int?)) + : base(description, context, inputs, outputs) + { + DefaultLanguageCode = defaultLanguageCode; + TextSplitMode = textSplitMode; + MaximumPageLength = maximumPageLength; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a value indicating which language code to use. Default + /// is en. + /// + [JsonProperty(PropertyName = "defaultLanguageCode")] + public SplitSkillLanguage DefaultLanguageCode { get; set; } + + /// + /// Gets or sets a value indicating which split mode to perform. + /// Possible values include: 'pages', 'sentences' + /// + [JsonProperty(PropertyName = "textSplitMode")] + public TextSplitMode? TextSplitMode { get; set; } + + /// + /// Gets or sets the desired maximum page length. Default is 10000. + /// + [JsonProperty(PropertyName = "maximumPageLength")] + public int? MaximumPageLength { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/TextExtractionAlgorithm.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/TextExtractionAlgorithm.cs new file mode 100644 index 000000000000..0c0830e74a4b --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/TextExtractionAlgorithm.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for TextExtractionAlgorithm. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum TextExtractionAlgorithm + { + [EnumMember(Value = "printed")] + Printed, + [EnumMember(Value = "handwritten")] + Handwritten + } + internal static class TextExtractionAlgorithmEnumExtension + { + internal static string ToSerializedValue(this TextExtractionAlgorithm? value) + { + return value == null ? null : ((TextExtractionAlgorithm)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this TextExtractionAlgorithm value) + { + switch( value ) + { + case TextExtractionAlgorithm.Printed: + return "printed"; + case TextExtractionAlgorithm.Handwritten: + return "handwritten"; + } + return null; + } + + internal static TextExtractionAlgorithm? ParseTextExtractionAlgorithm(this string value) + { + switch( value ) + { + case "printed": + return TextExtractionAlgorithm.Printed; + case "handwritten": + return TextExtractionAlgorithm.Handwritten; + } + return null; + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/TextSplitMode.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/TextSplitMode.cs new file mode 100644 index 000000000000..1bfac35b3aed --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/TextSplitMode.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for TextSplitMode. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum TextSplitMode + { + [EnumMember(Value = "pages")] + Pages, + [EnumMember(Value = "sentences")] + Sentences + } + internal static class TextSplitModeEnumExtension + { + internal static string ToSerializedValue(this TextSplitMode? value) + { + return value == null ? null : ((TextSplitMode)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this TextSplitMode value) + { + switch( value ) + { + case TextSplitMode.Pages: + return "pages"; + case TextSplitMode.Sentences: + return "sentences"; + } + return null; + } + + internal static TextSplitMode? ParseTextSplitMode(this string value) + { + switch( value ) + { + case "pages": + return TextSplitMode.Pages; + case "sentences": + return TextSplitMode.Sentences; + } + return null; + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/VisualFeature.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/VisualFeature.cs new file mode 100644 index 000000000000..484c045ff8ea --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/VisualFeature.cs @@ -0,0 +1,84 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for VisualFeature. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum VisualFeature + { + [EnumMember(Value = "categories")] + Categories, + [EnumMember(Value = "tags")] + Tags, + [EnumMember(Value = "description")] + Description, + [EnumMember(Value = "faces")] + Faces, + [EnumMember(Value = "imageType")] + ImageType, + [EnumMember(Value = "color")] + Color + } + internal static class VisualFeatureEnumExtension + { + internal static string ToSerializedValue(this VisualFeature? value) + { + return value == null ? null : ((VisualFeature)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this VisualFeature value) + { + switch( value ) + { + case VisualFeature.Categories: + return "categories"; + case VisualFeature.Tags: + return "tags"; + case VisualFeature.Description: + return "description"; + case VisualFeature.Faces: + return "faces"; + case VisualFeature.ImageType: + return "imageType"; + case VisualFeature.Color: + return "color"; + } + return null; + } + + internal static VisualFeature? ParseVisualFeature(this string value) + { + switch( value ) + { + case "categories": + return VisualFeature.Categories; + case "tags": + return VisualFeature.Tags; + case "description": + return VisualFeature.Description; + case "faces": + return VisualFeature.Faces; + case "imageType": + return VisualFeature.ImageType; + case "color": + return VisualFeature.Color; + } + return null; + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/WebApiHttpHeaders.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/WebApiHttpHeaders.cs new file mode 100644 index 000000000000..96d54d97a0b8 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/WebApiHttpHeaders.cs @@ -0,0 +1,50 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + public partial class WebApiHttpHeaders + { + /// + /// Initializes a new instance of the WebApiHttpHeaders class. + /// + public WebApiHttpHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the WebApiHttpHeaders class. + /// + /// A dictionary of http request headers. + public WebApiHttpHeaders(IDictionary headers = default(IDictionary)) + { + Headers = headers; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a dictionary of http request headers. + /// + [JsonProperty(PropertyName = "headers")] + public IDictionary Headers { get; set; } + + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/WebApiSkill.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/WebApiSkill.cs new file mode 100644 index 000000000000..016f1f1e15d7 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/Models/WebApiSkill.cs @@ -0,0 +1,129 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A skill that can call a Web API endpoint, allowing you to extend a + /// skillset by having it call your custom code. + /// + /// + [Newtonsoft.Json.JsonObject("#Microsoft.Skills.Custom.WebApiSkill")] + public partial class WebApiSkill : Skill + { + /// + /// Initializes a new instance of the WebApiSkill class. + /// + public WebApiSkill() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the WebApiSkill class. + /// + /// The description of the skill which + /// describes the inputs, outputs, and usage of the skill. + /// Represents the level at which operations take + /// place, such as the document root or document content (for example, + /// /document or /document/content). + /// Inputs of the skills could be a column in the + /// source data set, or the output of an upstream skill. + /// The output of a skill is either a field in an + /// Azure Search index, or a value that can be consumed as an input by + /// another skill. + /// The url for the Web API. + /// The headers required to make the http + /// request. + /// The method for the http request. + /// The desired timeout for the request. Default + /// is 30 seconds. + /// The desired batch size which indicates + /// number of documents. + public WebApiSkill(string description, string context, IList inputs, IList outputs, string uri, WebApiHttpHeaders httpHeaders, string httpMethod, System.TimeSpan? timeout = default(System.TimeSpan?), int? batchSize = default(int?)) + : base(description, context, inputs, outputs) + { + Uri = uri; + HttpHeaders = httpHeaders; + HttpMethod = httpMethod; + Timeout = timeout; + BatchSize = batchSize; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the url for the Web API. + /// + [JsonProperty(PropertyName = "uri")] + public string Uri { get; set; } + + /// + /// Gets or sets the headers required to make the http request. + /// + [JsonProperty(PropertyName = "httpHeaders")] + public WebApiHttpHeaders HttpHeaders { get; set; } + + /// + /// Gets or sets the method for the http request. + /// + [JsonProperty(PropertyName = "httpMethod")] + public string HttpMethod { get; set; } + + /// + /// Gets or sets the desired timeout for the request. Default is 30 + /// seconds. + /// + [JsonProperty(PropertyName = "timeout")] + public System.TimeSpan? Timeout { get; set; } + + /// + /// Gets or sets the desired batch size which indicates number of + /// documents. + /// + [JsonProperty(PropertyName = "batchSize")] + public int? BatchSize { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (Uri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Uri"); + } + if (HttpHeaders == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HttpHeaders"); + } + if (HttpMethod == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HttpMethod"); + } + } + } +} diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SdkInfo_SearchServiceClient.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SdkInfo_SearchServiceClient.cs index f1754fcc41b4..c3032ad905ea 100644 --- a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SdkInfo_SearchServiceClient.cs +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SdkInfo_SearchServiceClient.cs @@ -23,6 +23,7 @@ public static IEnumerable> ApiInfo_SearchServiceCl new Tuple("SearchServiceClient", "GetServiceStatistics", "2017-11-11-Preview"), new Tuple("SearchServiceClient", "Indexers", "2017-11-11-Preview"), new Tuple("SearchServiceClient", "Indexes", "2017-11-11-Preview"), + new Tuple("SearchServiceClient", "Skillsets", "2017-11-11-Preview"), new Tuple("SearchServiceClient", "SynonymMaps", "2017-11-11-Preview"), }.AsEnumerable(); } diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SearchServiceClient.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SearchServiceClient.cs index 469f9c67b202..e337ca030d9a 100644 --- a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SearchServiceClient.cs +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SearchServiceClient.cs @@ -92,6 +92,11 @@ public partial class SearchServiceClient : ServiceClient, I /// public virtual IIndexersOperations Indexers { get; private set; } + /// + /// Gets the ISkillsetsOperations. + /// + public virtual ISkillsetsOperations Skillsets { get; private set; } + /// /// Gets the ISynonymMapsOperations. /// @@ -191,6 +196,7 @@ private void Initialize() { DataSources = new DataSourcesOperations(this); Indexers = new IndexersOperations(this); + Skillsets = new SkillsetsOperations(this); SynonymMaps = new SynonymMapsOperations(this); Indexes = new IndexesOperations(this); BaseUri = "https://{searchServiceName}.{searchDnsSuffix}"; @@ -238,6 +244,8 @@ private void Initialize() DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("@odata.type")); SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("@odata.type")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("@odata.type")); CustomInitialize(); DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); } diff --git a/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SkillsetsOperations.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SkillsetsOperations.cs new file mode 100644 index 000000000000..a7019f87e748 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SkillsetsOperations.cs @@ -0,0 +1,1131 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SkillsetsOperations operations. + /// + internal partial class SkillsetsOperations : IServiceOperations, ISkillsetsOperations + { + /// + /// Initializes a new instance of the SkillsetsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SkillsetsOperations(SearchServiceClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the SearchServiceClient + /// + public SearchServiceClient Client { get; private set; } + + /// + /// Retrieves a cognitive skillset in an Azure Search service. + /// + /// + /// + /// The name of the skillset to retrieve. + /// + /// + /// Additional parameters for the 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SearchServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchServiceName"); + } + if (Client.SearchDnsSuffix == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchDnsSuffix"); + } + if (skillsetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skillsetName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + System.Guid? clientRequestId = default(System.Guid?); + if (searchRequestOptions != null) + { + clientRequestId = searchRequestOptions.ClientRequestId; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("skillsetName", skillsetName); + tracingParameters.Add("clientRequestId", clientRequestId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "skillsets('{skillsetName}')"; + _url = _url.Replace("{searchServiceName}", Client.SearchServiceName); + _url = _url.Replace("{searchDnsSuffix}", Client.SearchDnsSuffix); + _url = _url.Replace("{skillsetName}", System.Uri.EscapeDataString(skillsetName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (clientRequestId != null) + { + if (_httpRequest.Headers.Contains("client-request-id")) + { + _httpRequest.Headers.Remove("client-request-id"); + } + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); + } + + + 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 (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + 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("request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.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; + } + + /// + /// Creates a new cognitive skillset in an Azure Search service. + /// + /// + /// + /// The name of the skillset to create or update. + /// + /// + /// The skillset containing one or more cognitive skills to create or update in + /// an Azure Search service. + /// + /// + /// Additional parameters for the 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string skillsetName, Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SearchServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchServiceName"); + } + if (Client.SearchDnsSuffix == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchDnsSuffix"); + } + if (skillsetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skillsetName"); + } + if (skillset == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skillset"); + } + if (skillset != null) + { + skillset.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + string prefer = "return=representation"; + System.Guid? clientRequestId = default(System.Guid?); + if (searchRequestOptions != null) + { + clientRequestId = searchRequestOptions.ClientRequestId; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("skillsetName", skillsetName); + tracingParameters.Add("skillset", skillset); + tracingParameters.Add("prefer", prefer); + tracingParameters.Add("clientRequestId", clientRequestId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "skillsets('{skillsetName}')"; + _url = _url.Replace("{searchServiceName}", Client.SearchServiceName); + _url = _url.Replace("{searchDnsSuffix}", Client.SearchDnsSuffix); + _url = _url.Replace("{skillsetName}", System.Uri.EscapeDataString(skillsetName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", System.Guid.NewGuid().ToString()); + } + if (prefer != null) + { + if (_httpRequest.Headers.Contains("Prefer")) + { + _httpRequest.Headers.Remove("Prefer"); + } + _httpRequest.Headers.TryAddWithoutValidation("Prefer", prefer); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (clientRequestId != null) + { + if (_httpRequest.Headers.Contains("client-request-id")) + { + _httpRequest.Headers.Remove("client-request-id"); + } + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); + } + + + 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; + if(skillset != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(skillset, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.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 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + 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("request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.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; + } + + /// + /// Deletes a cognitive skillset in an Azure Search service. + /// + /// + /// + /// The name of the skillset to delete. + /// + /// + /// Additional parameters for the operation + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SearchServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchServiceName"); + } + if (Client.SearchDnsSuffix == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchDnsSuffix"); + } + if (skillsetName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skillsetName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + System.Guid? clientRequestId = default(System.Guid?); + if (searchRequestOptions != null) + { + clientRequestId = searchRequestOptions.ClientRequestId; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("skillsetName", skillsetName); + tracingParameters.Add("clientRequestId", clientRequestId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "skillsets('{skillsetName}')"; + _url = _url.Replace("{searchServiceName}", Client.SearchServiceName); + _url = _url.Replace("{searchDnsSuffix}", Client.SearchDnsSuffix); + _url = _url.Replace("{skillsetName}", System.Uri.EscapeDataString(skillsetName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (clientRequestId != null) + { + if (_httpRequest.Headers.Contains("client-request-id")) + { + _httpRequest.Headers.Remove("client-request-id"); + } + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); + } + + + 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 (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 204 && (int)_statusCode != 404) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + 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("request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List all cognitive skillsets in an Azure Search service. + /// + /// + /// + /// Additional parameters for the 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListWithHttpMessagesAsync(SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SearchServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchServiceName"); + } + if (Client.SearchDnsSuffix == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchDnsSuffix"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + System.Guid? clientRequestId = default(System.Guid?); + if (searchRequestOptions != null) + { + clientRequestId = searchRequestOptions.ClientRequestId; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("clientRequestId", clientRequestId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "skillsets"; + _url = _url.Replace("{searchServiceName}", Client.SearchServiceName); + _url = _url.Replace("{searchDnsSuffix}", Client.SearchDnsSuffix); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (clientRequestId != null) + { + if (_httpRequest.Headers.Contains("client-request-id")) + { + _httpRequest.Headers.Remove("client-request-id"); + } + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); + } + + + 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 (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + 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("request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.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; + } + + /// + /// Creates a new cognitive skillset in an Azure Search service. + /// + /// + /// + /// The skillset containing one or more cognitive skills to create in an Azure + /// Search service. + /// + /// + /// Additional parameters for the 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateWithHttpMessagesAsync(Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SearchServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchServiceName"); + } + if (Client.SearchDnsSuffix == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.SearchDnsSuffix"); + } + if (skillset == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skillset"); + } + if (skillset != null) + { + skillset.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + System.Guid? clientRequestId = default(System.Guid?); + if (searchRequestOptions != null) + { + clientRequestId = searchRequestOptions.ClientRequestId; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("skillset", skillset); + tracingParameters.Add("clientRequestId", clientRequestId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "skillsets"; + _url = _url.Replace("{searchServiceName}", Client.SearchServiceName); + _url = _url.Replace("{searchDnsSuffix}", Client.SearchDnsSuffix); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (clientRequestId != null) + { + if (_httpRequest.Headers.Contains("client-request-id")) + { + _httpRequest.Headers.Remove("client-request-id"); + } + _httpRequest.Headers.TryAddWithoutValidation("client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); + } + + + 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; + if(skillset != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(skillset, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + 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("request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.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/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SkillsetsOperationsExtensions.cs b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SkillsetsOperationsExtensions.cs new file mode 100644 index 000000000000..553c1a7ae800 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Microsoft.Azure.Search.Service/Generated/SkillsetsOperationsExtensions.cs @@ -0,0 +1,236 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Search +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SkillsetsOperations. + /// + public static partial class SkillsetsOperationsExtensions + { + /// + /// Retrieves a cognitive skillset in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the skillset to retrieve. + /// + /// + /// Additional parameters for the operation + /// + public static Skillset Get(this ISkillsetsOperations operations, string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions)) + { + return operations.GetAsync(skillsetName, searchRequestOptions).GetAwaiter().GetResult(); + } + + /// + /// Retrieves a cognitive skillset in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the skillset to retrieve. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISkillsetsOperations operations, string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(skillsetName, searchRequestOptions, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates a new cognitive skillset in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the skillset to create or update. + /// + /// + /// The skillset containing one or more cognitive skills to create or update in + /// an Azure Search service. + /// + /// + /// Additional parameters for the operation + /// + public static Skillset CreateOrUpdate(this ISkillsetsOperations operations, string skillsetName, Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions)) + { + return operations.CreateOrUpdateAsync(skillsetName, skillset, searchRequestOptions).GetAwaiter().GetResult(); + } + + /// + /// Creates a new cognitive skillset in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the skillset to create or update. + /// + /// + /// The skillset containing one or more cognitive skills to create or update in + /// an Azure Search service. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ISkillsetsOperations operations, string skillsetName, Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(skillsetName, skillset, searchRequestOptions, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a cognitive skillset in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the skillset to delete. + /// + /// + /// Additional parameters for the operation + /// + public static void Delete(this ISkillsetsOperations operations, string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions)) + { + operations.DeleteAsync(skillsetName, searchRequestOptions).GetAwaiter().GetResult(); + } + + /// + /// Deletes a cognitive skillset in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the skillset to delete. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ISkillsetsOperations operations, string skillsetName, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(skillsetName, searchRequestOptions, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// List all cognitive skillsets in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Additional parameters for the operation + /// + public static SkillsetListResult List(this ISkillsetsOperations operations, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions)) + { + return operations.ListAsync(searchRequestOptions).GetAwaiter().GetResult(); + } + + /// + /// List all cognitive skillsets in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + public static async Task ListAsync(this ISkillsetsOperations operations, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(searchRequestOptions, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates a new cognitive skillset in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The skillset containing one or more cognitive skills to create in an Azure + /// Search service. + /// + /// + /// Additional parameters for the operation + /// + public static Skillset Create(this ISkillsetsOperations operations, Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions)) + { + return operations.CreateAsync(skillset, searchRequestOptions).GetAwaiter().GetResult(); + } + + /// + /// Creates a new cognitive skillset in an Azure Search service. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The skillset containing one or more cognitive skills to create in an Azure + /// Search service. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this ISkillsetsOperations operations, Skillset skillset, SearchRequestOptions searchRequestOptions = default(SearchRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(skillset, searchRequestOptions, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateAndListIndexers.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateAndListIndexers.json index 0c7da54b34a7..02834a1addf9 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateAndListIndexers.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateAndListIndexers.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "362c7cb4-83e1-4b42-bb13-5a3730fd3f0b" + "9c588093-24ac-4782-9a2b-ebeba44a7829" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:03 GMT" + "Thu, 19 Jul 2018 17:49:43 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1113" + "1151" ], "x-ms-request-id": [ - "59b1e2f2-fcf5-43cc-b41e-58e0e71ae831" + "0c018adb-4549-4b7e-999b-9995b06e5f29" ], "x-ms-correlation-request-id": [ - "59b1e2f2-fcf5-43cc-b41e-58e0e71ae831" + "0c018adb-4549-4b7e-999b-9995b06e5f29" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024604Z:59b1e2f2-fcf5-43cc-b41e-58e0e71ae831" + "NORTHEUROPE:20180719T174944Z:0c018adb-4549-4b7e-999b-9995b06e5f29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8252?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MjUyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5578?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1NTc4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "f4facda4-a53c-4d64-8bb6-360f24a9c0b9" + "2f6b33b8-69e9-4f99-b1c6-a2eb8836393a" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8252\",\r\n \"name\": \"azsmnet8252\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5578\",\r\n \"name\": \"azsmnet5578\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:05 GMT" + "Thu, 19 Jul 2018 17:49:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1112" + "1150" ], "x-ms-request-id": [ - "24370605-d4cc-4407-a595-bafad2f6527e" + "edfabe2c-1481-4169-9b1a-b105646108c6" ], "x-ms-correlation-request-id": [ - "24370605-d4cc-4407-a595-bafad2f6527e" + "edfabe2c-1481-4169-9b1a-b105646108c6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024605Z:24370605-d4cc-4407-a595-bafad2f6527e" + "NORTHEUROPE:20180719T174944Z:edfabe2c-1481-4169-9b1a-b105646108c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8252/providers/Microsoft.Search/searchServices/azs-7864?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5578/providers/Microsoft.Search/searchServices/azs-7662?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjYyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "bd877616-5773-46d1-bf28-f31eedf70af3" + "eeca0307-e6b3-440a-b69d-b84fa97a0d09" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8252/providers/Microsoft.Search/searchServices/azs-7864\",\r\n \"name\": \"azs-7864\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5578/providers/Microsoft.Search/searchServices/azs-7662\",\r\n \"name\": \"azs-7662\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:09 GMT" + "Thu, 19 Jul 2018 17:49:49 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A46%3A09.2839312Z'\"" + "W/\"datetime'2018-07-19T17%3A49%3A49.5036126Z'\"" ], "x-ms-request-id": [ - "bd877616-5773-46d1-bf28-f31eedf70af3" + "eeca0307-e6b3-440a-b69d-b84fa97a0d09" ], "request-id": [ - "bd877616-5773-46d1-bf28-f31eedf70af3" + "eeca0307-e6b3-440a-b69d-b84fa97a0d09" ], "elapsed-time": [ - "1195" + "1316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1089" + "1149" ], "x-ms-correlation-request-id": [ - "af64637e-7213-4935-b123-1a374eb089f7" + "85bfdce3-787d-48ca-a943-370bb8cfb27e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024609Z:af64637e-7213-4935-b123-1a374eb089f7" + "NORTHEUROPE:20180719T174950Z:85bfdce3-787d-48ca-a943-370bb8cfb27e" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8252/providers/Microsoft.Search/searchServices/azs-7864/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODY0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5578/providers/Microsoft.Search/searchServices/azs-7662/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjYyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "719e0e5d-1fc4-4767-a165-96df47984f43" + "1e29308b-74e4-446e-a64f-49eaaa061de9" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"1372644F44B38EA2EB197CC09BD68449\",\r\n \"secondaryKey\": \"55A70330BAB50E6C8213E520678501CD\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"B20AB0DB00F43AC64A60A29C32F821C7\",\r\n \"secondaryKey\": \"3D7BC9635A71991E0FDAA433728FE766\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:12 GMT" + "Thu, 19 Jul 2018 17:49:51 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "719e0e5d-1fc4-4767-a165-96df47984f43" + "1e29308b-74e4-446e-a64f-49eaaa061de9" ], "request-id": [ - "719e0e5d-1fc4-4767-a165-96df47984f43" + "1e29308b-74e4-446e-a64f-49eaaa061de9" ], "elapsed-time": [ - "265" + "238" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1088" + "1148" ], "x-ms-correlation-request-id": [ - "fa1f3a1f-2066-4608-8840-d010c0d902a2" + "77e8d75c-4e72-4cab-bee1-7aaa28f53bb5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024612Z:fa1f3a1f-2066-4608-8840-d010c0d902a2" + "NORTHEUROPE:20180719T174952Z:77e8d75c-4e72-4cab-bee1-7aaa28f53bb5" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8252/providers/Microsoft.Search/searchServices/azs-7864/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODY0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5578/providers/Microsoft.Search/searchServices/azs-7662/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjYyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97cf74fe-ad74-409e-b6ef-4e35441092fd" + "1c5a3a60-5232-4ebf-a1a2-1b4945b9f227" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"17AEB55E3596ABC254AACBC39D0DDAC9\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"471E9DB3639752C55B85A7B40BB80DDB\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:12 GMT" + "Thu, 19 Jul 2018 17:49:52 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "97cf74fe-ad74-409e-b6ef-4e35441092fd" + "1c5a3a60-5232-4ebf-a1a2-1b4945b9f227" ], "request-id": [ - "97cf74fe-ad74-409e-b6ef-4e35441092fd" + "1c5a3a60-5232-4ebf-a1a2-1b4945b9f227" ], "elapsed-time": [ - "180" + "289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14988" ], "x-ms-correlation-request-id": [ - "c037ef06-2c37-4424-81af-412f8aa73c91" + "0f360f1b-0627-4cc1-87e9-ae578a7e2af1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024613Z:c037ef06-2c37-4424-81af-412f8aa73c91" + "NORTHEUROPE:20180719T174952Z:0f360f1b-0627-4cc1-87e9-ae578a7e2af1" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5870\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5764\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "d2f53202-2b77-4a9b-a96a-c759ed881901" + "48881053-b41d-4296-9ba3-ec8ba9ddaad6" ], "accept-language": [ "en-US" ], "api-key": [ - "1372644F44B38EA2EB197CC09BD68449" + "B20AB0DB00F43AC64A60A29C32F821C7" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7864.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E95DAB2CD9\\\"\",\r\n \"name\": \"azsmnet5870\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7662.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA009590E59\\\"\",\r\n \"name\": \"azsmnet5764\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:14 GMT" + "Thu, 19 Jul 2018 17:49:55 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E95DAB2CD9\"" + "W/\"0x8D5EDA009590E59\"" ], "Location": [ - "https://azs-7864.search-dogfood.windows-int.net/indexes('azsmnet5870')?api-version=2017-11-11-Preview" + "https://azs-7662.search-dogfood.windows-int.net/indexes('azsmnet5764')?api-version=2017-11-11-Preview" ], "request-id": [ - "d2f53202-2b77-4a9b-a96a-c759ed881901" + "48881053-b41d-4296-9ba3-ec8ba9ddaad6" ], "elapsed-time": [ - "1655" + "843" ], "OData-Version": [ "4.0" @@ -408,32 +408,32 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5426\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet910\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "321" + "320" ], "client-request-id": [ - "c1e207c5-d017-40ac-9723-d773151f190e" + "ac41fa22-efee-4a00-8820-f991995a9042" ], "accept-language": [ "en-US" ], "api-key": [ - "1372644F44B38EA2EB197CC09BD68449" + "B20AB0DB00F43AC64A60A29C32F821C7" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7864.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E95DB912F5\\\"\",\r\n \"name\": \"azsmnet5426\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7662.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0096D5E9E\\\"\",\r\n \"name\": \"azsmnet910\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "527" + "526" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -445,19 +445,19 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:14 GMT" + "Thu, 19 Jul 2018 17:49:55 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E95DB912F5\"" + "W/\"0x8D5EDA0096D5E9E\"" ], "Location": [ - "https://azs-7864.search-dogfood.windows-int.net/datasources('azsmnet5426')?api-version=2017-11-11-Preview" + "https://azs-7662.search-dogfood.windows-int.net/datasources('azsmnet910')?api-version=2017-11-11-Preview" ], "request-id": [ - "c1e207c5-d017-40ac-9723-d773151f190e" + "ac41fa22-efee-4a00-8820-f991995a9042" ], "elapsed-time": [ "49" @@ -478,32 +478,32 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet2282\",\r\n \"dataSourceName\": \"azsmnet5426\",\r\n \"targetIndexName\": \"azsmnet5870\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3067\",\r\n \"dataSourceName\": \"azsmnet910\",\r\n \"targetIndexName\": \"azsmnet5764\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1126" ], "client-request-id": [ - "1d35e68d-1e8a-413c-a348-a7d80f4b5b0e" + "b214e2db-9fc9-459b-bfe0-fa487e57459a" ], "accept-language": [ "en-US" ], "api-key": [ - "1372644F44B38EA2EB197CC09BD68449" + "B20AB0DB00F43AC64A60A29C32F821C7" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7864.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E95E808B96\\\"\",\r\n \"name\": \"azsmnet2282\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5426\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5870\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7662.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA00A34614E\\\"\",\r\n \"name\": \"azsmnet3067\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet910\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5764\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1111" + "1110" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -515,22 +515,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:16 GMT" + "Thu, 19 Jul 2018 17:49:56 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E95E808B96\"" + "W/\"0x8D5EDA00A34614E\"" ], "Location": [ - "https://azs-7864.search-dogfood.windows-int.net/indexers('azsmnet2282')?api-version=2017-11-11-Preview" + "https://azs-7662.search-dogfood.windows-int.net/indexers('azsmnet3067')?api-version=2017-11-11-Preview" ], "request-id": [ - "1d35e68d-1e8a-413c-a348-a7d80f4b5b0e" + "b214e2db-9fc9-459b-bfe0-fa487e57459a" ], "elapsed-time": [ - "283" + "272" ], "OData-Version": [ "4.0" @@ -548,32 +548,32 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4973\",\r\n \"dataSourceName\": \"azsmnet5426\",\r\n \"targetIndexName\": \"azsmnet5870\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2347\",\r\n \"dataSourceName\": \"azsmnet910\",\r\n \"targetIndexName\": \"azsmnet5764\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1126" ], "client-request-id": [ - "65cc276f-4277-4b66-a964-798509f2512f" + "fba24662-214f-43b6-b81f-fe31a627df43" ], "accept-language": [ "en-US" ], "api-key": [ - "1372644F44B38EA2EB197CC09BD68449" + "B20AB0DB00F43AC64A60A29C32F821C7" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7864.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E95F1835E8\\\"\",\r\n \"name\": \"azsmnet4973\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5426\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5870\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7662.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA00A631DCD\\\"\",\r\n \"name\": \"azsmnet2347\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet910\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5764\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1111" + "1110" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -585,22 +585,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:16 GMT" + "Thu, 19 Jul 2018 17:49:56 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E95F1835E8\"" + "W/\"0x8D5EDA00A631DCD\"" ], "Location": [ - "https://azs-7864.search-dogfood.windows-int.net/indexers('azsmnet4973')?api-version=2017-11-11-Preview" + "https://azs-7662.search-dogfood.windows-int.net/indexers('azsmnet2347')?api-version=2017-11-11-Preview" ], "request-id": [ - "65cc276f-4277-4b66-a964-798509f2512f" + "fba24662-214f-43b6-b81f-fe31a627df43" ], "elapsed-time": [ - "885" + "208" ], "OData-Version": [ "4.0" @@ -621,20 +621,20 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "82a77020-adad-496a-bd18-ad62480303c7" + "49fc84fd-35be-41dd-853b-2b753bdadfaa" ], "accept-language": [ "en-US" ], "api-key": [ - "1372644F44B38EA2EB197CC09BD68449" + "B20AB0DB00F43AC64A60A29C32F821C7" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7864.search-dogfood.windows-int.net/$metadata#indexers\",\r\n \"value\": [\r\n {\r\n \"@odata.etag\": \"\\\"0x8D5B6E95E808B96\\\"\",\r\n \"name\": \"azsmnet2282\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5426\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5870\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n },\r\n {\r\n \"@odata.etag\": \"\\\"0x8D5B6E95F1835E8\\\"\",\r\n \"name\": \"azsmnet4973\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5426\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5870\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7662.search-dogfood.windows-int.net/$metadata#indexers\",\r\n \"value\": [\r\n {\r\n \"@odata.etag\": \"\\\"0x8D5EDA00A631DCD\\\"\",\r\n \"name\": \"azsmnet2347\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet910\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5764\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n },\r\n {\r\n \"@odata.etag\": \"\\\"0x8D5EDA00A34614E\\\"\",\r\n \"name\": \"azsmnet3067\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet910\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5764\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -646,7 +646,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:17 GMT" + "Thu, 19 Jul 2018 17:49:56 GMT" ], "Pragma": [ "no-cache" @@ -655,10 +655,10 @@ "Accept-Encoding" ], "request-id": [ - "82a77020-adad-496a-bd18-ad62480303c7" + "49fc84fd-35be-41dd-853b-2b753bdadfaa" ], "elapsed-time": [ - "26" + "31" ], "OData-Version": [ "4.0" @@ -673,13 +673,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8252/providers/Microsoft.Search/searchServices/azs-7864?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5578/providers/Microsoft.Search/searchServices/azs-7662?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjYyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe7e3a4-7109-4910-8fd5-133c0540eb3d" + "561be3ca-7230-46d5-b0e4-93c99198c68f" ], "accept-language": [ "en-US" @@ -701,31 +701,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:20 GMT" + "Thu, 19 Jul 2018 17:50:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5fe7e3a4-7109-4910-8fd5-133c0540eb3d" + "561be3ca-7230-46d5-b0e4-93c99198c68f" ], "request-id": [ - "5fe7e3a4-7109-4910-8fd5-133c0540eb3d" + "561be3ca-7230-46d5-b0e4-93c99198c68f" ], "elapsed-time": [ - "814" + "669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14949" + "14974" ], "x-ms-correlation-request-id": [ - "a6e705c6-a107-4994-b03a-debf22ceb47c" + "8c413474-262a-4342-a1c2-598dda291bbc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024621Z:a6e705c6-a107-4994-b03a-debf22ceb47c" + "NORTHEUROPE:20180719T175000Z:8c413474-262a-4342-a1c2-598dda291bbc" ], "X-Content-Type-Options": [ "nosniff" @@ -736,14 +736,14 @@ ], "Names": { "GenerateName": [ - "azsmnet8252", - "azsmnet5870", - "azsmnet5426", - "azsmnet2282", - "azsmnet4973" + "azsmnet5578", + "azsmnet5764", + "azsmnet910", + "azsmnet3067", + "azsmnet2347" ], "GenerateServiceName": [ - "azs-7864" + "azs-7662" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateBlobIndexerWithConfigurationParameters.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateBlobIndexerWithConfigurationParameters.json index eef6c7e6a7ad..ac37e6bc6383 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateBlobIndexerWithConfigurationParameters.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanCreateBlobIndexerWithConfigurationParameters.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "645d73d7-b9f9-48c9-b741-401ec3dc8915" + "209c2dc7-65f9-448a-be9b-108906c885ed" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:38 GMT" + "Thu, 19 Jul 2018 17:48:11 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1091" + "1155" ], "x-ms-request-id": [ - "0adf45b9-527f-4900-9c9a-ee8045939a23" + "ce406928-15c3-409f-acdd-a4cd12a3163a" ], "x-ms-correlation-request-id": [ - "0adf45b9-527f-4900-9c9a-ee8045939a23" + "ce406928-15c3-409f-acdd-a4cd12a3163a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024438Z:0adf45b9-527f-4900-9c9a-ee8045939a23" + "NORTHEUROPE:20180719T174811Z:ce406928-15c3-409f-acdd-a4cd12a3163a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8805?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4ODA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1584?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNTg0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "4bdd57f3-c7fb-4bb5-88d4-e72ba34f6d36" + "49900f83-6290-4e78-b98c-925b0b48e35e" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8805\",\r\n \"name\": \"azsmnet8805\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1584\",\r\n \"name\": \"azsmnet1584\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:39 GMT" + "Thu, 19 Jul 2018 17:48:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1090" + "1154" ], "x-ms-request-id": [ - "9fb5132f-4b55-4f85-9e23-c3efc2a746ce" + "0c2689e7-3e66-4149-8a03-b503b46e463c" ], "x-ms-correlation-request-id": [ - "9fb5132f-4b55-4f85-9e23-c3efc2a746ce" + "0c2689e7-3e66-4149-8a03-b503b46e463c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024439Z:9fb5132f-4b55-4f85-9e23-c3efc2a746ce" + "NORTHEUROPE:20180719T174812Z:0c2689e7-3e66-4149-8a03-b503b46e463c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8805/providers/Microsoft.Search/searchServices/azs-2356?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMzU2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1584/providers/Microsoft.Search/searchServices/azs-3311?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMzExP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "513cfab7-77b6-4c51-9b3d-bcb1a764e406" + "8cf252bc-7bdd-4660-8a34-384ede88156e" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8805/providers/Microsoft.Search/searchServices/azs-2356\",\r\n \"name\": \"azs-2356\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1584/providers/Microsoft.Search/searchServices/azs-3311\",\r\n \"name\": \"azs-3311\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:42 GMT" + "Thu, 19 Jul 2018 17:48:18 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A44%3A42.9071433Z'\"" + "W/\"datetime'2018-07-19T17%3A48%3A17.748755Z'\"" ], "x-ms-request-id": [ - "513cfab7-77b6-4c51-9b3d-bcb1a764e406" + "8cf252bc-7bdd-4660-8a34-384ede88156e" ], "request-id": [ - "513cfab7-77b6-4c51-9b3d-bcb1a764e406" + "8cf252bc-7bdd-4660-8a34-384ede88156e" ], "elapsed-time": [ - "1038" + "1981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1089" + "1154" ], "x-ms-correlation-request-id": [ - "7c57fcb1-bf7c-420a-a111-9edb4572815f" + "d03e1b7c-d5c1-4c03-97bf-a0c5342e1e74" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024443Z:7c57fcb1-bf7c-420a-a111-9edb4572815f" + "NORTHEUROPE:20180719T174818Z:d03e1b7c-d5c1-4c03-97bf-a0c5342e1e74" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8805/providers/Microsoft.Search/searchServices/azs-2356/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMzU2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1584/providers/Microsoft.Search/searchServices/azs-3311/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMzExL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6d7640a-79d5-4bf5-933a-ec7b07b0f703" + "b70d8441-2a0b-4649-9174-a22302b650ea" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"F8FC129BED0BD8F8ED8945314F42CC06\",\r\n \"secondaryKey\": \"EBDA0CEE3EC3AE673286734773B2DD6A\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"31851C43839BBA2BC9CF5586044B0177\",\r\n \"secondaryKey\": \"5CDBE758634582B36F3DBA6CF5723DB9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:45 GMT" + "Thu, 19 Jul 2018 17:48:20 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c6d7640a-79d5-4bf5-933a-ec7b07b0f703" + "b70d8441-2a0b-4649-9174-a22302b650ea" ], "request-id": [ - "c6d7640a-79d5-4bf5-933a-ec7b07b0f703" + "b70d8441-2a0b-4649-9174-a22302b650ea" ], "elapsed-time": [ - "172" + "874" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1088" + "1153" ], "x-ms-correlation-request-id": [ - "07f34632-dec9-4060-b749-d0f9557c8d94" + "bea259e8-39bb-4c72-bbe5-cdfe62774070" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024445Z:07f34632-dec9-4060-b749-d0f9557c8d94" + "NORTHEUROPE:20180719T174820Z:bea259e8-39bb-4c72-bbe5-cdfe62774070" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8805/providers/Microsoft.Search/searchServices/azs-2356/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMzU2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1584/providers/Microsoft.Search/searchServices/azs-3311/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMzExL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "894e6fd3-5df2-4611-a54d-0d48f9ee7c59" + "00d76758-9de8-4355-963a-efeb24d364de" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"ED230BF395AF73557EF5DCC2C17C3B05\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2CC276AAF9145F52B22A4FF5745F7634\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:45 GMT" + "Thu, 19 Jul 2018 17:48:21 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "894e6fd3-5df2-4611-a54d-0d48f9ee7c59" + "00d76758-9de8-4355-963a-efeb24d364de" ], "request-id": [ - "894e6fd3-5df2-4611-a54d-0d48f9ee7c59" + "00d76758-9de8-4355-963a-efeb24d364de" ], "elapsed-time": [ - "186" + "651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14986" ], "x-ms-correlation-request-id": [ - "b721a500-822c-4e3f-9ff1-cbdda9209e76" + "8d48d5ca-bf4d-474a-a001-63a87ce3c214" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024445Z:b721a500-822c-4e3f-9ff1-cbdda9209e76" + "NORTHEUROPE:20180719T174821Z:8d48d5ca-bf4d-474a-a001-63a87ce3c214" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet471\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5043\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1883" + "2350" ], "client-request-id": [ - "a34ea839-bf97-4b34-a584-0047113486eb" + "df1cea06-8bbd-482b-a75c-33cd3ab6a6d5" ], "accept-language": [ "en-US" ], "api-key": [ - "F8FC129BED0BD8F8ED8945314F42CC06" + "31851C43839BBA2BC9CF5586044B0177" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2356.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9297E66E8\\\"\",\r\n \"name\": \"azsmnet471\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3311.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FD3203856\\\"\",\r\n \"name\": \"azsmnet5043\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2085" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:47 GMT" + "Thu, 19 Jul 2018 17:48:23 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9297E66E8\"" + "W/\"0x8D5ED9FD3203856\"" ], "Location": [ - "https://azs-2356.search-dogfood.windows-int.net/indexes('azsmnet471')?api-version=2017-11-11-Preview" + "https://azs-3311.search-dogfood.windows-int.net/indexes('azsmnet5043')?api-version=2017-11-11-Preview" ], "request-id": [ - "a34ea839-bf97-4b34-a584-0047113486eb" + "df1cea06-8bbd-482b-a75c-33cd3ab6a6d5" ], "elapsed-time": [ - "1413" + "793" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1837\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9293\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "f4e8fcb8-21fd-4bf9-8c2b-980fa2616493" + "82dde7c6-4ea7-4aaa-b990-98ef81515b5f" ], "accept-language": [ "en-US" ], "api-key": [ - "F8FC129BED0BD8F8ED8945314F42CC06" + "31851C43839BBA2BC9CF5586044B0177" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2356.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9298DACED\\\"\",\r\n \"name\": \"azsmnet1837\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3311.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FD3339E07\\\"\",\r\n \"name\": \"azsmnet9293\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:47 GMT" + "Thu, 19 Jul 2018 17:48:24 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9298DACED\"" + "W/\"0x8D5ED9FD3339E07\"" ], "Location": [ - "https://azs-2356.search-dogfood.windows-int.net/datasources('azsmnet1837')?api-version=2017-11-11-Preview" + "https://azs-3311.search-dogfood.windows-int.net/datasources('azsmnet9293')?api-version=2017-11-11-Preview" ], "request-id": [ - "f4e8fcb8-21fd-4bf9-8c2b-980fa2616493" + "82dde7c6-4ea7-4aaa-b990-98ef81515b5f" ], "elapsed-time": [ - "50" + "52" ], "OData-Version": [ "4.0" @@ -478,32 +478,32 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6506\",\r\n \"dataSourceName\": \"azsmnet6418\",\r\n \"targetIndexName\": \"azsmnet471\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"parameters\": {\r\n \"configuration\": {\r\n \"excludedFileNameExtensions\": \".pdf\",\r\n \"indexedFileNameExtensions\": \".docx\",\r\n \"dataToExtract\": \"storageMetadata\"\r\n }\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"disabled\": true\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6607\",\r\n \"dataSourceName\": \"azsmnet9645\",\r\n \"targetIndexName\": \"azsmnet5043\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"parameters\": {\r\n \"configuration\": {\r\n \"excludedFileNameExtensions\": \".pdf\",\r\n \"indexedFileNameExtensions\": \".docx\",\r\n \"dataToExtract\": \"storageMetadata\"\r\n }\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"disabled\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1335" + "1336" ], "client-request-id": [ - "7526f62c-9e95-4342-9c8a-53a98cfb4e46" + "65e78ab6-c777-49e7-b698-2f2d1e129232" ], "accept-language": [ "en-US" ], "api-key": [ - "F8FC129BED0BD8F8ED8945314F42CC06" + "31851C43839BBA2BC9CF5586044B0177" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2356.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E92A97BD1B\\\"\",\r\n \"name\": \"azsmnet6506\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet6418\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet471\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": null,\r\n \"maxFailedItems\": null,\r\n \"maxFailedItemsPerBatch\": null,\r\n \"base64EncodeKeys\": null,\r\n \"configuration\": {\r\n \"excludedFileNameExtensions\": \".pdf\",\r\n \"indexedFileNameExtensions\": \".docx\",\r\n \"dataToExtract\": \"storageMetadata\"\r\n }\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": true\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3311.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FD3FE2416\\\"\",\r\n \"name\": \"azsmnet6607\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet9645\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5043\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": null,\r\n \"maxFailedItems\": null,\r\n \"maxFailedItemsPerBatch\": null,\r\n \"base64EncodeKeys\": null,\r\n \"configuration\": {\r\n \"excludedFileNameExtensions\": \".pdf\",\r\n \"indexedFileNameExtensions\": \".docx\",\r\n \"dataToExtract\": \"storageMetadata\"\r\n }\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": true\r\n}", "ResponseHeaders": { "Content-Length": [ - "1324" + "1325" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -515,22 +515,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:48 GMT" + "Thu, 19 Jul 2018 17:48:25 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E92A97BD1B\"" + "W/\"0x8D5ED9FD3FE2416\"" ], "Location": [ - "https://azs-2356.search-dogfood.windows-int.net/indexers('azsmnet6506')?api-version=2017-11-11-Preview" + "https://azs-3311.search-dogfood.windows-int.net/indexers('azsmnet6607')?api-version=2017-11-11-Preview" ], "request-id": [ - "7526f62c-9e95-4342-9c8a-53a98cfb4e46" + "65e78ab6-c777-49e7-b698-2f2d1e129232" ], "elapsed-time": [ - "601" + "162" ], "OData-Version": [ "4.0" @@ -545,13 +545,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8805/providers/Microsoft.Search/searchServices/azs-2356?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMzU2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1584/providers/Microsoft.Search/searchServices/azs-3311?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMzExP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37c6b4ce-9280-4c13-9a15-f9e6e5d2b3ab" + "058b37cf-584a-4dfc-a80e-5a99a2579c2c" ], "accept-language": [ "en-US" @@ -573,31 +573,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:54 GMT" + "Thu, 19 Jul 2018 17:48:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "37c6b4ce-9280-4c13-9a15-f9e6e5d2b3ab" + "058b37cf-584a-4dfc-a80e-5a99a2579c2c" ], "request-id": [ - "37c6b4ce-9280-4c13-9a15-f9e6e5d2b3ab" + "058b37cf-584a-4dfc-a80e-5a99a2579c2c" ], "elapsed-time": [ - "1317" + "1324" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14950" + "14978" ], "x-ms-correlation-request-id": [ - "a37caf78-4685-480f-bba5-fd68cb7ea845" + "0437827f-21d1-449d-ba4e-8e16071c9dcb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024454Z:a37caf78-4685-480f-bba5-fd68cb7ea845" + "NORTHEUROPE:20180719T174829Z:0437827f-21d1-449d-ba4e-8e16071c9dcb" ], "X-Content-Type-Options": [ "nosniff" @@ -608,14 +608,14 @@ ], "Names": { "GenerateName": [ - "azsmnet8805", - "azsmnet471", - "azsmnet1837", - "azsmnet6506", - "azsmnet6418" + "azsmnet1584", + "azsmnet5043", + "azsmnet9293", + "azsmnet6607", + "azsmnet9645" ], "GenerateServiceName": [ - "azs-2356" + "azs-3311" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanResetIndexerAndGetIndexerStatus.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanResetIndexerAndGetIndexerStatus.json index 84970b210e38..11ef17d13348 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanResetIndexerAndGetIndexerStatus.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanResetIndexerAndGetIndexerStatus.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0150d578-292e-41ae-85e4-03dcd5c9f761" + "9550fe01-c55b-49dd-94f5-b6ec3b4d829c" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:36 GMT" + "Thu, 19 Jul 2018 17:52:26 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1102" + "1140" ], "x-ms-request-id": [ - "f56682cc-db15-41c7-9e3d-3c0973cd8db1" + "0e1d0e43-2aff-44eb-bfec-b7e2cd84d383" ], "x-ms-correlation-request-id": [ - "f56682cc-db15-41c7-9e3d-3c0973cd8db1" + "0e1d0e43-2aff-44eb-bfec-b7e2cd84d383" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024836Z:f56682cc-db15-41c7-9e3d-3c0973cd8db1" + "NORTHEUROPE:20180719T175226Z:0e1d0e43-2aff-44eb-bfec-b7e2cd84d383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4491?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NDkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5648?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1NjQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "49045753-148f-4289-84d6-b86a4a41f77f" + "8282e389-69a6-4d5e-8128-024e59e4fab9" ], "accept-language": [ "en-US" @@ -84,8 +84,11 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4491\",\r\n \"name\": \"azsmnet4491\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5648\",\r\n \"name\": \"azsmnet5648\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { + "Content-Length": [ + "175" + ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -96,28 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:36 GMT" + "Thu, 19 Jul 2018 17:52:27 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1101" + "1139" ], "x-ms-request-id": [ - "635f89d0-aa96-4f26-80ce-11a9af39ee0f" + "57938e08-cac5-44a8-b206-72a6395e1967" ], "x-ms-correlation-request-id": [ - "635f89d0-aa96-4f26-80ce-11a9af39ee0f" + "57938e08-cac5-44a8-b206-72a6395e1967" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024836Z:635f89d0-aa96-4f26-80ce-11a9af39ee0f" + "NORTHEUROPE:20180719T175227Z:57938e08-cac5-44a8-b206-72a6395e1967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,11 +123,11 @@ "nosniff" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4491/providers/Microsoft.Search/searchServices/azs-4600?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5648/providers/Microsoft.Search/searchServices/azs-9278?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05Mjc4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -141,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "841f2bde-6c39-42ed-a492-33f71266f8d7" + "f7082ab5-0dc3-4a28-8928-65955d29f794" ], "accept-language": [ "en-US" @@ -151,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4491/providers/Microsoft.Search/searchServices/azs-4600\",\r\n \"name\": \"azs-4600\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5648/providers/Microsoft.Search/searchServices/azs-9278\",\r\n \"name\": \"azs-9278\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -166,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:40 GMT" + "Thu, 19 Jul 2018 17:52:32 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A48%3A40.4497656Z'\"" + "W/\"datetime'2018-07-19T17%3A52%3A32.1963885Z'\"" ], "x-ms-request-id": [ - "841f2bde-6c39-42ed-a492-33f71266f8d7" + "f7082ab5-0dc3-4a28-8928-65955d29f794" ], "request-id": [ - "841f2bde-6c39-42ed-a492-33f71266f8d7" + "f7082ab5-0dc3-4a28-8928-65955d29f794" ], "elapsed-time": [ - "1018" + "1238" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1107" + "1143" ], "x-ms-correlation-request-id": [ - "c740735e-9742-480a-bb46-db3a9695928a" + "f98233cd-926b-4f4a-bf4f-3f0ca15a0e9c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024841Z:c740735e-9742-480a-bb46-db3a9695928a" + "NORTHEUROPE:20180719T175232Z:f98233cd-926b-4f4a-bf4f-3f0ca15a0e9c" ], "X-Content-Type-Options": [ "nosniff" @@ -202,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4491/providers/Microsoft.Search/searchServices/azs-4600/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjAwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5648/providers/Microsoft.Search/searchServices/azs-9278/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05Mjc4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93fd1306-acc6-46e1-a856-8ba089c4043d" + "cf84cc99-0658-408a-832f-c1c0de30852f" ], "accept-language": [ "en-US" @@ -218,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"3FCA3653BA80D82EB5587F81FEDA3053\",\r\n \"secondaryKey\": \"6D8697D9D3C8F494931E50653C49CC43\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"89C427CB2C2338C2519446A1AC8AF139\",\r\n \"secondaryKey\": \"FFA39B564C0B2F6265BED644FCC3A135\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -230,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:42 GMT" + "Thu, 19 Jul 2018 17:52:34 GMT" ], "Pragma": [ "no-cache" @@ -243,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "93fd1306-acc6-46e1-a856-8ba089c4043d" + "cf84cc99-0658-408a-832f-c1c0de30852f" ], "request-id": [ - "93fd1306-acc6-46e1-a856-8ba089c4043d" + "cf84cc99-0658-408a-832f-c1c0de30852f" ], "elapsed-time": [ - "152" + "221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1106" + "1142" ], "x-ms-correlation-request-id": [ - "3a79bf52-323b-483a-bd52-da42f8d7f0b3" + "3c978b1b-0228-489b-9693-1ee9c8beb0c0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024842Z:3a79bf52-323b-483a-bd52-da42f8d7f0b3" + "NORTHEUROPE:20180719T175235Z:3c978b1b-0228-489b-9693-1ee9c8beb0c0" ], "X-Content-Type-Options": [ "nosniff" @@ -270,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4491/providers/Microsoft.Search/searchServices/azs-4600/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjAwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5648/providers/Microsoft.Search/searchServices/azs-9278/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05Mjc4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd492738-74dd-4277-a3f5-6abe60fa7d44" + "13fd7023-fd1e-4bca-ab26-d1ce46055b8a" ], "accept-language": [ "en-US" @@ -286,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"55C32AB07D09988A477A5282D95449EE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"6718DD5CF9E6EA6AC00280839C0B9886\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -298,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:42 GMT" + "Thu, 19 Jul 2018 17:52:34 GMT" ], "Pragma": [ "no-cache" @@ -311,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bd492738-74dd-4277-a3f5-6abe60fa7d44" + "13fd7023-fd1e-4bca-ab26-d1ce46055b8a" ], "request-id": [ - "bd492738-74dd-4277-a3f5-6abe60fa7d44" + "13fd7023-fd1e-4bca-ab26-d1ce46055b8a" ], "elapsed-time": [ - "136" + "248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14986" ], "x-ms-correlation-request-id": [ - "7ad233c7-2901-454e-9aee-b7a9211fbae3" + "baa1d756-0855-44f3-aab9-79e26b8b9341" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024843Z:7ad233c7-2901-454e-9aee-b7a9211fbae3" + "NORTHEUROPE:20180719T175235Z:baa1d756-0855-44f3-aab9-79e26b8b9341" ], "X-Content-Type-Options": [ "nosniff" @@ -341,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6409\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8382\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "11bf441c-c0a0-4dd6-9fae-c778963b5de3" + "c3a2ab7a-cec1-4814-a6ee-4d6537e88fd7" ], "accept-language": [ "en-US" ], "api-key": [ - "3FCA3653BA80D82EB5587F81FEDA3053" + "89C427CB2C2338C2519446A1AC8AF139" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4600.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9B6C48659\\\"\",\r\n \"name\": \"azsmnet6409\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9278.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA06AF95F67\\\"\",\r\n \"name\": \"azsmnet8382\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -378,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:44 GMT" + "Thu, 19 Jul 2018 17:52:38 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9B6C48659\"" + "W/\"0x8D5EDA06AF95F67\"" ], "Location": [ - "https://azs-4600.search-dogfood.windows-int.net/indexes('azsmnet6409')?api-version=2017-11-11-Preview" + "https://azs-9278.search-dogfood.windows-int.net/indexes('azsmnet8382')?api-version=2017-11-11-Preview" ], "request-id": [ - "11bf441c-c0a0-4dd6-9fae-c778963b5de3" + "c3a2ab7a-cec1-4814-a6ee-4d6537e88fd7" ], "elapsed-time": [ - "865" + "1454" ], "OData-Version": [ "4.0" @@ -411,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4224\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3540\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -420,20 +417,20 @@ "321" ], "client-request-id": [ - "bec22ac6-4e2d-47b3-87ea-248f6d643252" + "6250fedc-42e3-43f5-8f00-a06ce5057c52" ], "accept-language": [ "en-US" ], "api-key": [ - "3FCA3653BA80D82EB5587F81FEDA3053" + "89C427CB2C2338C2519446A1AC8AF139" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4600.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9B6D181CD\\\"\",\r\n \"name\": \"azsmnet4224\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9278.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA06B0C9DF3\\\"\",\r\n \"name\": \"azsmnet3540\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -448,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:44 GMT" + "Thu, 19 Jul 2018 17:52:38 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9B6D181CD\"" + "W/\"0x8D5EDA06B0C9DF3\"" ], "Location": [ - "https://azs-4600.search-dogfood.windows-int.net/datasources('azsmnet4224')?api-version=2017-11-11-Preview" + "https://azs-9278.search-dogfood.windows-int.net/datasources('azsmnet3540')?api-version=2017-11-11-Preview" ], "request-id": [ - "bec22ac6-4e2d-47b3-87ea-248f6d643252" + "6250fedc-42e3-43f5-8f00-a06ce5057c52" ], "elapsed-time": [ - "35" + "51" ], "OData-Version": [ "4.0" @@ -481,7 +478,7 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1445\",\r\n \"dataSourceName\": \"azsmnet4224\",\r\n \"targetIndexName\": \"azsmnet6409\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7297\",\r\n \"dataSourceName\": \"azsmnet3540\",\r\n \"targetIndexName\": \"azsmnet8382\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -490,20 +487,20 @@ "1127" ], "client-request-id": [ - "7ce7d15e-7701-480c-8b46-1e85e2680542" + "0b9545cc-b0e3-4efb-abde-524e340de92c" ], "accept-language": [ "en-US" ], "api-key": [ - "3FCA3653BA80D82EB5587F81FEDA3053" + "89C427CB2C2338C2519446A1AC8AF139" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4600.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9B7979A8B\\\"\",\r\n \"name\": \"azsmnet1445\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet4224\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet6409\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9278.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA06BE1D4F6\\\"\",\r\n \"name\": \"azsmnet7297\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3540\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8382\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1111" @@ -518,22 +515,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:46 GMT" + "Thu, 19 Jul 2018 17:52:40 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9B7979A8B\"" + "W/\"0x8D5EDA06BE1D4F6\"" ], "Location": [ - "https://azs-4600.search-dogfood.windows-int.net/indexers('azsmnet1445')?api-version=2017-11-11-Preview" + "https://azs-9278.search-dogfood.windows-int.net/indexers('azsmnet7297')?api-version=2017-11-11-Preview" ], "request-id": [ - "7ce7d15e-7701-480c-8b46-1e85e2680542" + "0b9545cc-b0e3-4efb-abde-524e340de92c" ], "elapsed-time": [ - "273" + "240" ], "OData-Version": [ "4.0" @@ -548,19 +545,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet1445')/search.reset?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTQ0NScpL3NlYXJjaC5yZXNldD9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestUri": "/indexers('azsmnet7297')/search.reset?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzI5NycpL3NlYXJjaC5yZXNldD9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "6f9dea7d-3380-452d-8848-4cef6514026e" + "788c59b6-a931-46ce-8a58-fa0287cfdafe" ], "accept-language": [ "en-US" ], "api-key": [ - "3FCA3653BA80D82EB5587F81FEDA3053" + "89C427CB2C2338C2519446A1AC8AF139" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -576,16 +573,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:46 GMT" + "Thu, 19 Jul 2018 17:52:40 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "6f9dea7d-3380-452d-8848-4cef6514026e" + "788c59b6-a931-46ce-8a58-fa0287cfdafe" ], "elapsed-time": [ - "94" + "47" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" @@ -594,26 +591,26 @@ "StatusCode": 204 }, { - "RequestUri": "/indexers('azsmnet1445')/search.status?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTQ0NScpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestUri": "/indexers('azsmnet7297')/search.status?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzI5NycpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "56e829d0-e0b5-4437-9fe9-bb3dee49a627" + "b0c21a7c-3e7a-4611-8dc3-9220b0bd2264" ], "accept-language": [ "en-US" ], "api-key": [ - "3FCA3653BA80D82EB5587F81FEDA3053" + "89C427CB2C2338C2519446A1AC8AF139" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4600.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2017_11_11_Preview.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet1445\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-05-11T02:48:46.515Z\",\r\n \"endTime\": \"2018-05-11T02:48:46.515Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-05-11T02:48:46.515Z\",\r\n \"endTime\": \"2018-05-11T02:48:46.515Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n }\r\n ],\r\n \"limits\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9278.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2017_11_11_Preview.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet7297\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-07-19T17:52:40.43Z\",\r\n \"endTime\": \"2018-07-19T17:52:40.43Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-07-19T17:52:40.43Z\",\r\n \"endTime\": \"2018-07-19T17:52:40.43Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n }\r\n ],\r\n \"limits\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -625,7 +622,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:46 GMT" + "Thu, 19 Jul 2018 17:52:40 GMT" ], "Pragma": [ "no-cache" @@ -634,10 +631,10 @@ "Accept-Encoding" ], "request-id": [ - "56e829d0-e0b5-4437-9fe9-bb3dee49a627" + "b0c21a7c-3e7a-4611-8dc3-9220b0bd2264" ], "elapsed-time": [ - "40" + "15" ], "OData-Version": [ "4.0" @@ -652,13 +649,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4491/providers/Microsoft.Search/searchServices/azs-4600?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5648/providers/Microsoft.Search/searchServices/azs-9278?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05Mjc4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9964e66-6a93-4432-98a8-fc4d6fa45af8" + "56974e2c-ad6c-4746-b19e-b3e1eb9525d7" ], "accept-language": [ "en-US" @@ -680,31 +677,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:49 GMT" + "Thu, 19 Jul 2018 17:52:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a9964e66-6a93-4432-98a8-fc4d6fa45af8" + "56974e2c-ad6c-4746-b19e-b3e1eb9525d7" ], "request-id": [ - "a9964e66-6a93-4432-98a8-fc4d6fa45af8" + "56974e2c-ad6c-4746-b19e-b3e1eb9525d7" ], "elapsed-time": [ - "892" + "757" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14948" + "14970" ], "x-ms-correlation-request-id": [ - "a6090a10-bba2-493c-9376-f3dfbcb0b1a6" + "bcdfb729-2d5f-4389-aac1-d5c00fb2996c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024850Z:a6090a10-bba2-493c-9376-f3dfbcb0b1a6" + "NORTHEUROPE:20180719T175256Z:bcdfb729-2d5f-4389-aac1-d5c00fb2996c" ], "X-Content-Type-Options": [ "nosniff" @@ -715,13 +712,13 @@ ], "Names": { "GenerateName": [ - "azsmnet4491", - "azsmnet6409", - "azsmnet4224", - "azsmnet1445" + "azsmnet5648", + "azsmnet8382", + "azsmnet3540", + "azsmnet7297" ], "GenerateServiceName": [ - "azs-4600" + "azs-9278" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRoundtripIndexerWithFieldMappingFunctions.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRoundtripIndexerWithFieldMappingFunctions.json index e10849e56a13..01806a7bb5dd 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRoundtripIndexerWithFieldMappingFunctions.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRoundtripIndexerWithFieldMappingFunctions.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de45bec-8bfc-4435-b3c3-60cd610bc752" + "66929e1e-2997-4eb9-b139-ed36a3721ffd" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:59 GMT" + "Thu, 19 Jul 2018 17:48:35 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1106" + "1143" ], "x-ms-request-id": [ - "0392397e-e3aa-4ade-b9f8-2e65a265b597" + "ca888357-7624-43bc-aa68-0da4758d6b8f" ], "x-ms-correlation-request-id": [ - "0392397e-e3aa-4ade-b9f8-2e65a265b597" + "ca888357-7624-43bc-aa68-0da4758d6b8f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024500Z:0392397e-e3aa-4ade-b9f8-2e65a265b597" + "NORTHEUROPE:20180719T174836Z:ca888357-7624-43bc-aa68-0da4758d6b8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8042?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MDQyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3669?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNjY5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "e54816ee-ee84-4437-bf20-9e24f2e0b8c9" + "4bf51c46-f78a-4508-837a-d25d3517d0c1" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8042\",\r\n \"name\": \"azsmnet8042\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3669\",\r\n \"name\": \"azsmnet3669\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:00 GMT" + "Thu, 19 Jul 2018 17:48:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1107" + "1142" ], "x-ms-request-id": [ - "2c15a9b9-f54f-485b-b079-ba7400b3eec7" + "1fca989b-1e20-4fa6-a6ba-0a8523d3fd85" ], "x-ms-correlation-request-id": [ - "2c15a9b9-f54f-485b-b079-ba7400b3eec7" + "1fca989b-1e20-4fa6-a6ba-0a8523d3fd85" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024501Z:2c15a9b9-f54f-485b-b079-ba7400b3eec7" + "NORTHEUROPE:20180719T174837Z:1fca989b-1e20-4fa6-a6ba-0a8523d3fd85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8042/providers/Microsoft.Search/searchServices/azs-8550?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NTUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3669/providers/Microsoft.Search/searchServices/azs-1909?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xOTA5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "2fbed1ae-dbb5-428c-93fb-5a55d9c5f928" + "35a3c670-399b-48b9-a793-6d7ddefd0ad9" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8042/providers/Microsoft.Search/searchServices/azs-8550\",\r\n \"name\": \"azs-8550\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3669/providers/Microsoft.Search/searchServices/azs-1909\",\r\n \"name\": \"azs-1909\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:05 GMT" + "Thu, 19 Jul 2018 17:48:42 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A45%3A04.9402621Z'\"" + "W/\"datetime'2018-07-19T17%3A48%3A42.164134Z'\"" ], "x-ms-request-id": [ - "2fbed1ae-dbb5-428c-93fb-5a55d9c5f928" + "35a3c670-399b-48b9-a793-6d7ddefd0ad9" ], "request-id": [ - "2fbed1ae-dbb5-428c-93fb-5a55d9c5f928" + "35a3c670-399b-48b9-a793-6d7ddefd0ad9" ], "elapsed-time": [ - "1832" + "1376" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1093" + "1155" ], "x-ms-correlation-request-id": [ - "5e22767c-b697-462b-8e38-38a287a7bc2f" + "eb099698-8160-4a31-b856-fb7d38997709" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024506Z:5e22767c-b697-462b-8e38-38a287a7bc2f" + "NORTHEUROPE:20180719T174842Z:eb099698-8160-4a31-b856-fb7d38997709" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8042/providers/Microsoft.Search/searchServices/azs-8550/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NTUwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3669/providers/Microsoft.Search/searchServices/azs-1909/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xOTA5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd5b10fb-8436-495d-b15f-a0ed0b1b3b7c" + "6aef8bb8-41a9-4012-9c04-905546f70762" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"EF765B49A8AFC9F931671463582ED4D4\",\r\n \"secondaryKey\": \"771BC139EE7B9ABC91058614ED2B006C\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"05AA3CEFBDC666A9A5F5ABDF1A61F990\",\r\n \"secondaryKey\": \"1127AAA40072B8591BF19378DB111C60\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:08 GMT" + "Thu, 19 Jul 2018 17:48:44 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cd5b10fb-8436-495d-b15f-a0ed0b1b3b7c" + "6aef8bb8-41a9-4012-9c04-905546f70762" ], "request-id": [ - "cd5b10fb-8436-495d-b15f-a0ed0b1b3b7c" + "6aef8bb8-41a9-4012-9c04-905546f70762" ], "elapsed-time": [ - "219" + "268" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1092" + "1154" ], "x-ms-correlation-request-id": [ - "c25bc91e-3015-4d83-a436-054e89c93cdd" + "275d7205-95c8-46ec-9bcf-b8aa5aa41b28" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024508Z:c25bc91e-3015-4d83-a436-054e89c93cdd" + "NORTHEUROPE:20180719T174845Z:275d7205-95c8-46ec-9bcf-b8aa5aa41b28" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8042/providers/Microsoft.Search/searchServices/azs-8550/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NTUwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3669/providers/Microsoft.Search/searchServices/azs-1909/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xOTA5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96477655-74d8-48ba-aad9-997414dc8e6c" + "9a0abcfd-f6a9-4efd-a513-ecbcc8875320" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B195103CD2275D0C6EC4CD80ED497D21\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"943BD2AB03BDD86EEE6FCC8314D0A8C1\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:08 GMT" + "Thu, 19 Jul 2018 17:48:45 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "96477655-74d8-48ba-aad9-997414dc8e6c" + "9a0abcfd-f6a9-4efd-a513-ecbcc8875320" ], "request-id": [ - "96477655-74d8-48ba-aad9-997414dc8e6c" + "9a0abcfd-f6a9-4efd-a513-ecbcc8875320" ], "elapsed-time": [ - "284" + "213" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14991" ], "x-ms-correlation-request-id": [ - "925158df-b9fd-4dd2-8c5f-59d00e9e74e9" + "77398fca-bfeb-4009-9496-9960f684fece" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024509Z:925158df-b9fd-4dd2-8c5f-59d00e9e74e9" + "NORTHEUROPE:20180719T174845Z:77398fca-bfeb-4009-9496-9960f684fece" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6897\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3644\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "8b216bb1-3623-4903-a79c-6cff426b344b" + "9cd372bf-db9a-42b1-b688-7241afc5806d" ], "accept-language": [ "en-US" ], "api-key": [ - "EF765B49A8AFC9F931671463582ED4D4" + "05AA3CEFBDC666A9A5F5ABDF1A61F990" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8550.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9378D9660\\\"\",\r\n \"name\": \"azsmnet6897\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1909.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FE16A542E\\\"\",\r\n \"name\": \"azsmnet3644\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:10 GMT" + "Thu, 19 Jul 2018 17:48:48 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9378D9660\"" + "W/\"0x8D5ED9FE16A542E\"" ], "Location": [ - "https://azs-8550.search-dogfood.windows-int.net/indexes('azsmnet6897')?api-version=2017-11-11-Preview" + "https://azs-1909.search-dogfood.windows-int.net/indexes('azsmnet3644')?api-version=2017-11-11-Preview" ], "request-id": [ - "8b216bb1-3623-4903-a79c-6cff426b344b" + "9cd372bf-db9a-42b1-b688-7241afc5806d" ], "elapsed-time": [ - "1642" + "851" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8840\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3133\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "65101562-cf2a-47a7-aea5-661e9024ed61" + "792ebb2c-2e7c-44bd-89e2-1df4c897fb4a" ], "accept-language": [ "en-US" ], "api-key": [ - "EF765B49A8AFC9F931671463582ED4D4" + "05AA3CEFBDC666A9A5F5ABDF1A61F990" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8550.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9379B2E49\\\"\",\r\n \"name\": \"azsmnet8840\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1909.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FE17C0BB1\\\"\",\r\n \"name\": \"azsmnet3133\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:10 GMT" + "Thu, 19 Jul 2018 17:48:48 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9379B2E49\"" + "W/\"0x8D5ED9FE17C0BB1\"" ], "Location": [ - "https://azs-8550.search-dogfood.windows-int.net/datasources('azsmnet8840')?api-version=2017-11-11-Preview" + "https://azs-1909.search-dogfood.windows-int.net/datasources('azsmnet3133')?api-version=2017-11-11-Preview" ], "request-id": [ - "65101562-cf2a-47a7-aea5-661e9024ed61" + "792ebb2c-2e7c-44bd-89e2-1df4c897fb4a" ], "elapsed-time": [ - "37" + "57" ], "OData-Version": [ "4.0" @@ -475,26 +475,26 @@ "StatusCode": 201 }, { - "RequestUri": "/indexes('azsmnet6897')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2ODk3Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestUri": "/indexes('azsmnet3644')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQzNjQ0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "734b19b8-d0b6-419b-bfc3-a5d38b0323cd" + "b9ce4a6d-b58c-4bcd-b6ad-ae55045dd3a3" ], "accept-language": [ "en-US" ], "api-key": [ - "EF765B49A8AFC9F931671463582ED4D4" + "05AA3CEFBDC666A9A5F5ABDF1A61F990" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8550.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9378D9660\\\"\",\r\n \"name\": \"azsmnet6897\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1909.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FE16A542E\\\"\",\r\n \"name\": \"azsmnet3644\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -506,22 +506,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:12 GMT" + "Thu, 19 Jul 2018 17:48:50 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9378D9660\"" + "W/\"0x8D5ED9FE16A542E\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "734b19b8-d0b6-419b-bfc3-a5d38b0323cd" + "b9ce4a6d-b58c-4bcd-b6ad-ae55045dd3a3" ], "elapsed-time": [ - "84" + "46" ], "OData-Version": [ "4.0" @@ -536,19 +536,19 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet6897')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2ODk3Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestUri": "/indexes('azsmnet3644')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQzNjQ0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet6897\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"a\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"b\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"c\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"d\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"e\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"f\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": [],\r\n \"@odata.etag\": \"\\\"0x8D5B6E9378D9660\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3644\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"synonymMaps\": [],\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"a\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"b\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"c\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"d\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"e\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"f\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": [],\r\n \"@odata.etag\": \"\\\"0x8D5ED9FE16A542E\\\"\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3594" + "4112" ], "client-request-id": [ - "610a4c05-78c1-4f17-9047-145b3d5dc214" + "debc0628-f0ca-4fff-a598-d59691efb42e" ], "Prefer": [ "return=representation" @@ -557,14 +557,14 @@ "en-US" ], "api-key": [ - "EF765B49A8AFC9F931671463582ED4D4" + "05AA3CEFBDC666A9A5F5ABDF1A61F990" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8550.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9388C804D\\\"\",\r\n \"name\": \"azsmnet6897\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"a\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"b\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"c\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"d\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"e\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"f\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1909.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FE2FE2786\\\"\",\r\n \"name\": \"azsmnet3644\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"a\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"b\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"c\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"d\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"e\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"f\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -576,22 +576,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:12 GMT" + "Thu, 19 Jul 2018 17:48:50 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9388C804D\"" + "W/\"0x8D5ED9FE2FE2786\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "610a4c05-78c1-4f17-9047-145b3d5dc214" + "debc0628-f0ca-4fff-a598-d59691efb42e" ], "elapsed-time": [ - "320" + "365" ], "OData-Version": [ "4.0" @@ -609,7 +609,7 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3179\",\r\n \"dataSourceName\": \"azsmnet8840\",\r\n \"targetIndexName\": \"azsmnet6897\",\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3717\",\r\n \"dataSourceName\": \"azsmnet3133\",\r\n \"targetIndexName\": \"azsmnet3644\",\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -618,20 +618,20 @@ "1358" ], "client-request-id": [ - "a7595367-e58f-4539-832c-76f06af27277" + "97e3f260-117e-40d5-9dae-d0a6d5957d15" ], "accept-language": [ "en-US" ], "api-key": [ - "EF765B49A8AFC9F931671463582ED4D4" + "05AA3CEFBDC666A9A5F5ABDF1A61F990" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8550.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E938A82565\\\"\",\r\n \"name\": \"azsmnet3179\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8840\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet6897\",\r\n \"schedule\": null,\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1909.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FE3205DDC\\\"\",\r\n \"name\": \"azsmnet3717\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3133\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3644\",\r\n \"schedule\": null,\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1169" @@ -646,22 +646,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:12 GMT" + "Thu, 19 Jul 2018 17:48:50 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E938A82565\"" + "W/\"0x8D5ED9FE3205DDC\"" ], "Location": [ - "https://azs-8550.search-dogfood.windows-int.net/indexers('azsmnet3179')?api-version=2017-11-11-Preview" + "https://azs-1909.search-dogfood.windows-int.net/indexers('azsmnet3717')?api-version=2017-11-11-Preview" ], "request-id": [ - "a7595367-e58f-4539-832c-76f06af27277" + "97e3f260-117e-40d5-9dae-d0a6d5957d15" ], "elapsed-time": [ - "217" + "283" ], "OData-Version": [ "4.0" @@ -676,26 +676,26 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet3179')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MzE3OScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet3717')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MzcxNycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "d930f142-86a0-4622-adc6-45db205ed323" + "e3f3556c-c89c-4bb9-a9c9-10a7573736af" ], "accept-language": [ "en-US" ], "api-key": [ - "EF765B49A8AFC9F931671463582ED4D4" + "05AA3CEFBDC666A9A5F5ABDF1A61F990" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8550.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E938A82565\\\"\",\r\n \"name\": \"azsmnet3179\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8840\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet6897\",\r\n \"schedule\": null,\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1909.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FE3205DDC\\\"\",\r\n \"name\": \"azsmnet3717\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3133\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3644\",\r\n \"schedule\": null,\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"a\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"b\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenEncode\": true\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"c\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"d\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"e\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": {\r\n \"useHttpServerUtilityUrlTokenDecode\": false\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"feature_id\",\r\n \"targetFieldName\": \"f\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -707,22 +707,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:12 GMT" + "Thu, 19 Jul 2018 17:48:50 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E938A82565\"" + "W/\"0x8D5ED9FE3205DDC\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "d930f142-86a0-4622-adc6-45db205ed323" + "e3f3556c-c89c-4bb9-a9c9-10a7573736af" ], "elapsed-time": [ - "17" + "8" ], "OData-Version": [ "4.0" @@ -737,13 +737,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8042/providers/Microsoft.Search/searchServices/azs-8550?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MDQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NTUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3669/providers/Microsoft.Search/searchServices/azs-1909?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xOTA5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bd05b02-3433-4623-aef0-0859c81b7394" + "c5f5bf19-66ef-421b-9c20-c616229bc40f" ], "accept-language": [ "en-US" @@ -765,31 +765,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:16 GMT" + "Thu, 19 Jul 2018 17:48:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5bd05b02-3433-4623-aef0-0859c81b7394" + "c5f5bf19-66ef-421b-9c20-c616229bc40f" ], "request-id": [ - "5bd05b02-3433-4623-aef0-0859c81b7394" + "c5f5bf19-66ef-421b-9c20-c616229bc40f" ], "elapsed-time": [ - "978" + "915" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14961" + "14977" ], "x-ms-correlation-request-id": [ - "88b0e7a0-e9a7-4d5d-a4fe-16cc82dc8bf9" + "2457ea39-1412-4c84-b8eb-a7b4fa8ff6d4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024517Z:88b0e7a0-e9a7-4d5d-a4fe-16cc82dc8bf9" + "NORTHEUROPE:20180719T174855Z:2457ea39-1412-4c84-b8eb-a7b4fa8ff6d4" ], "X-Content-Type-Options": [ "nosniff" @@ -800,13 +800,13 @@ ], "Names": { "GenerateName": [ - "azsmnet8042", - "azsmnet6897", - "azsmnet8840", - "azsmnet3179" + "azsmnet3669", + "azsmnet3644", + "azsmnet3133", + "azsmnet3717" ], "GenerateServiceName": [ - "azs-8550" + "azs-1909" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRunIndexerAndGetIndexerStatus.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRunIndexerAndGetIndexerStatus.json index 7d4958d8e2a0..16f9a907bb0c 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRunIndexerAndGetIndexerStatus.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanRunIndexerAndGetIndexerStatus.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0329097-ba87-4996-b49e-a4588467bd9b" + "951f9992-2f8d-4c81-a61a-334de5fb667f" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:09 GMT" + "Thu, 19 Jul 2018 17:50:48 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1111" + "1147" ], "x-ms-request-id": [ - "80bf727e-5501-4f12-8db5-2e615e80bbc0" + "1da84c07-23c2-45f3-ab6c-5399d408b392" ], "x-ms-correlation-request-id": [ - "80bf727e-5501-4f12-8db5-2e615e80bbc0" + "1da84c07-23c2-45f3-ab6c-5399d408b392" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024709Z:80bf727e-5501-4f12-8db5-2e615e80bbc0" + "NORTHEUROPE:20180719T175048Z:1da84c07-23c2-45f3-ab6c-5399d408b392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet261?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2246?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMjQ2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "10dad402-442b-4e3e-a4ad-5dbfea6696ea" + "e33a9450-062a-4bb6-9145-0716c83291c9" ], "accept-language": [ "en-US" @@ -84,11 +84,8 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet261\",\r\n \"name\": \"azsmnet261\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2246\",\r\n \"name\": \"azsmnet2246\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "173" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -99,22 +96,28 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:10 GMT" + "Thu, 19 Jul 2018 17:50:48 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1110" + "1146" ], "x-ms-request-id": [ - "e7232945-5d09-4f28-a293-2eec595de3b4" + "8c00fc3b-6ad1-4aa3-918f-f8546597fce0" ], "x-ms-correlation-request-id": [ - "e7232945-5d09-4f28-a293-2eec595de3b4" + "8c00fc3b-6ad1-4aa3-918f-f8546597fce0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024710Z:e7232945-5d09-4f28-a293-2eec595de3b4" + "NORTHEUROPE:20180719T175049Z:8c00fc3b-6ad1-4aa3-918f-f8546597fce0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -123,11 +126,11 @@ "nosniff" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet261/providers/Microsoft.Search/searchServices/azs-2289?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTIyODk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2246/providers/Microsoft.Search/searchServices/azs-6381?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzgxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +141,7 @@ "67" ], "x-ms-client-request-id": [ - "6a107374-9c9c-4b9b-9e1e-5a6c12233737" + "ede61390-a40d-4cd0-b33a-30afdcb015ab" ], "accept-language": [ "en-US" @@ -148,10 +151,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet261/providers/Microsoft.Search/searchServices/azs-2289\",\r\n \"name\": \"azs-2289\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2246/providers/Microsoft.Search/searchServices/azs-6381\",\r\n \"name\": \"azs-6381\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "384" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,34 +166,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:14 GMT" + "Thu, 19 Jul 2018 17:50:52 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A47%3A13.7206837Z'\"" + "W/\"datetime'2018-07-19T17%3A50%3A52.6150415Z'\"" ], "x-ms-request-id": [ - "6a107374-9c9c-4b9b-9e1e-5a6c12233737" + "ede61390-a40d-4cd0-b33a-30afdcb015ab" ], "request-id": [ - "6a107374-9c9c-4b9b-9e1e-5a6c12233737" + "ede61390-a40d-4cd0-b33a-30afdcb015ab" ], "elapsed-time": [ - "898" + "1435" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1117" + "1149" ], "x-ms-correlation-request-id": [ - "f0d0e8f3-d182-4816-a21b-ec5b78170476" + "6778687b-5799-49da-a24c-e19811e7ef6e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024714Z:f0d0e8f3-d182-4816-a21b-ec5b78170476" + "NORTHEUROPE:20180719T175053Z:6778687b-5799-49da-a24c-e19811e7ef6e" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +202,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet261/providers/Microsoft.Search/searchServices/azs-2289/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTIyODkvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2246/providers/Microsoft.Search/searchServices/azs-6381/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzgxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cfa272b-4928-4f42-b732-b86f60ccda0f" + "6c8f4085-d65c-469d-957e-698a952dd6bd" ], "accept-language": [ "en-US" @@ -215,7 +218,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"119AF7AB22AC02CAF7037F338449EF90\",\r\n \"secondaryKey\": \"246BDE12AFBD7F1CBAA26AC753E3115C\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"039BE2BC3AFEC0BB0E4DF42C931C4147\",\r\n \"secondaryKey\": \"98FA6237C049555DC9D936B563A15CA2\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:15 GMT" + "Thu, 19 Jul 2018 17:50:55 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +243,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2cfa272b-4928-4f42-b732-b86f60ccda0f" + "6c8f4085-d65c-469d-957e-698a952dd6bd" ], "request-id": [ - "2cfa272b-4928-4f42-b732-b86f60ccda0f" + "6c8f4085-d65c-469d-957e-698a952dd6bd" ], "elapsed-time": [ - "233" + "249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1116" + "1148" ], "x-ms-correlation-request-id": [ - "86560c58-8bcc-4608-aacf-2f17a4b07492" + "e773e3de-3c3d-450d-ba4d-aaebef50faa7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024716Z:86560c58-8bcc-4608-aacf-2f17a4b07492" + "NORTHEUROPE:20180719T175055Z:e773e3de-3c3d-450d-ba4d-aaebef50faa7" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +270,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet261/providers/Microsoft.Search/searchServices/azs-2289/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTIyODkvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2246/providers/Microsoft.Search/searchServices/azs-6381/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzgxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75a3decc-e8b3-42ee-8618-30bdda43a7ef" + "578ed814-7081-4767-bda6-3930e19f5789" ], "accept-language": [ "en-US" @@ -283,7 +286,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B08767025431924E729321B17230ED94\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"D609F3D308F8532BB30781931795FC9D\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +298,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:16 GMT" + "Thu, 19 Jul 2018 17:50:55 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +311,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "75a3decc-e8b3-42ee-8618-30bdda43a7ef" + "578ed814-7081-4767-bda6-3930e19f5789" ], "request-id": [ - "75a3decc-e8b3-42ee-8618-30bdda43a7ef" + "578ed814-7081-4767-bda6-3930e19f5789" ], "elapsed-time": [ - "206" + "227" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14984" ], "x-ms-correlation-request-id": [ - "8b71c051-7302-4126-9ac8-c65160fd0e63" + "eb5364b4-318f-40eb-95cc-2d86d2f40671" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024716Z:8b71c051-7302-4126-9ac8-c65160fd0e63" + "NORTHEUROPE:20180719T175055Z:eb5364b4-318f-40eb-95cc-2d86d2f40671" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +341,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7835\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7467\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "8f95e92c-e913-43b8-a125-3e9b51b6261b" + "ffbc7299-d87f-482d-bda6-0cde2d9e4030" ], "accept-language": [ "en-US" ], "api-key": [ - "119AF7AB22AC02CAF7037F338449EF90" + "039BE2BC3AFEC0BB0E4DF42C931C4147" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2289.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9831F884A\\\"\",\r\n \"name\": \"azsmnet7835\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6381.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA03211B22A\\\"\",\r\n \"name\": \"azsmnet7467\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +378,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:17 GMT" + "Thu, 19 Jul 2018 17:51:03 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9831F884A\"" + "W/\"0x8D5EDA03211B22A\"" ], "Location": [ - "https://azs-2289.search-dogfood.windows-int.net/indexes('azsmnet7835')?api-version=2017-11-11-Preview" + "https://azs-6381.search-dogfood.windows-int.net/indexes('azsmnet7467')?api-version=2017-11-11-Preview" ], "request-id": [ - "8f95e92c-e913-43b8-a125-3e9b51b6261b" + "ffbc7299-d87f-482d-bda6-0cde2d9e4030" ], "elapsed-time": [ - "797" + "5954" ], "OData-Version": [ "4.0" @@ -408,7 +411,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8033\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7070\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +420,20 @@ "321" ], "client-request-id": [ - "6467dd72-a3e6-48e5-9ffc-5633cde51c10" + "f95ae755-dceb-4625-8945-a6dafe9fb453" ], "accept-language": [ "en-US" ], "api-key": [ - "119AF7AB22AC02CAF7037F338449EF90" + "039BE2BC3AFEC0BB0E4DF42C931C4147" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2289.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9832C0E82\\\"\",\r\n \"name\": \"azsmnet8033\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6381.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA032240626\\\"\",\r\n \"name\": \"azsmnet7070\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +448,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:17 GMT" + "Thu, 19 Jul 2018 17:51:03 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9832C0E82\"" + "W/\"0x8D5EDA032240626\"" ], "Location": [ - "https://azs-2289.search-dogfood.windows-int.net/datasources('azsmnet8033')?api-version=2017-11-11-Preview" + "https://azs-6381.search-dogfood.windows-int.net/datasources('azsmnet7070')?api-version=2017-11-11-Preview" ], "request-id": [ - "6467dd72-a3e6-48e5-9ffc-5633cde51c10" + "f95ae755-dceb-4625-8945-a6dafe9fb453" ], "elapsed-time": [ - "36" + "43" ], "OData-Version": [ "4.0" @@ -478,7 +481,7 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview&mock_status=inProgress", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldyZtb2NrX3N0YXR1cz1pblByb2dyZXNz", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet9141\",\r\n \"dataSourceName\": \"azsmnet8033\",\r\n \"targetIndexName\": \"azsmnet7835\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1422\",\r\n \"dataSourceName\": \"azsmnet7070\",\r\n \"targetIndexName\": \"azsmnet7467\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -487,20 +490,20 @@ "1127" ], "client-request-id": [ - "d08eddb0-5edd-461c-9088-d2651958c5bc" + "4d667482-40c0-4670-b48f-bf56b9fd8746" ], "accept-language": [ "en-US" ], "api-key": [ - "119AF7AB22AC02CAF7037F338449EF90" + "039BE2BC3AFEC0BB0E4DF42C931C4147" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2289.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9847CFD1C\\\"\",\r\n \"name\": \"azsmnet9141\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8033\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7835\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6381.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA03332D1FC\\\"\",\r\n \"name\": \"azsmnet1422\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7070\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7467\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1111" @@ -515,22 +518,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:19 GMT" + "Thu, 19 Jul 2018 17:51:05 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9847CFD1C\"" + "W/\"0x8D5EDA03332D1FC\"" ], "Location": [ - "https://azs-2289.search-dogfood.windows-int.net/indexers('azsmnet9141')?api-version=2017-11-11-Preview&mock_status=inProgress" + "https://azs-6381.search-dogfood.windows-int.net/indexers('azsmnet1422')?api-version=2017-11-11-Preview&mock_status=inProgress" ], "request-id": [ - "d08eddb0-5edd-461c-9088-d2651958c5bc" + "4d667482-40c0-4670-b48f-bf56b9fd8746" ], "elapsed-time": [ - "1447" + "261" ], "OData-Version": [ "4.0" @@ -545,26 +548,26 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet9141')/search.status?api-version=2017-11-11-Preview&mock_status=inProgress", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTE0MScpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3Jm1vY2tfc3RhdHVzPWluUHJvZ3Jlc3M=", + "RequestUri": "/indexers('azsmnet1422')/search.status?api-version=2017-11-11-Preview&mock_status=inProgress", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTQyMicpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3Jm1vY2tfc3RhdHVzPWluUHJvZ3Jlc3M=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "13c1be73-7692-41ca-908e-0912ec18ec79" + "9f52a502-f2e3-4dcb-a968-1396a7749c2b" ], "accept-language": [ "en-US" ], "api-key": [ - "119AF7AB22AC02CAF7037F338449EF90" + "039BE2BC3AFEC0BB0E4DF42C931C4147" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2289.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2017_11_11_Preview.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet9141\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"inProgress\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-05-11T02:47:20.1560092Z\",\r\n \"endTime\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"transientFailure\",\r\n \"errorMessage\": \"The indexer could not connect to the data source\",\r\n \"startTime\": \"2018-05-11T02:47:20.1091212Z\",\r\n \"endTime\": \"2018-05-11T02:47:20.1091212Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-05-11T01:47:20.1403644Z\",\r\n \"endTime\": \"2018-05-11T01:47:20.1403644Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n {\r\n \"status\": \"success\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-05-10T02:47:20.1403644Z\",\r\n \"endTime\": \"2018-05-10T03:47:20.1403644Z\",\r\n \"errors\": [\r\n {\r\n \"key\": \"1\",\r\n \"status\": false,\r\n \"errorMessage\": \"Key field contains unsafe characters\",\r\n \"statusCode\": 400\r\n },\r\n {\r\n \"key\": \"121713\",\r\n \"status\": false,\r\n \"errorMessage\": \"Item is too large\",\r\n \"statusCode\": 400\r\n }\r\n ],\r\n \"warnings\": [\r\n {\r\n \"key\": \"2\",\r\n \"message\": \"This is the first and last warning\"\r\n }\r\n ],\r\n \"itemsProcessed\": 124876,\r\n \"itemsFailed\": 2,\r\n \"initialTrackingState\": \"100\",\r\n \"finalTrackingState\": \"200\"\r\n }\r\n ],\r\n \"limits\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6381.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2017_11_11_Preview.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet1422\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"inProgress\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-07-19T17:51:05.3376584Z\",\r\n \"endTime\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"transientFailure\",\r\n \"errorMessage\": \"The indexer could not connect to the data source\",\r\n \"startTime\": \"2018-07-19T17:51:05.3064025Z\",\r\n \"endTime\": \"2018-07-19T17:51:05.3064025Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-07-19T16:51:05.3261517Z\",\r\n \"endTime\": \"2018-07-19T16:51:05.3261517Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n {\r\n \"status\": \"success\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-07-18T17:51:05.3261517Z\",\r\n \"endTime\": \"2018-07-18T18:51:05.3261517Z\",\r\n \"errors\": [\r\n {\r\n \"key\": \"1\",\r\n \"status\": false,\r\n \"errorMessage\": \"Key field contains unsafe characters\",\r\n \"statusCode\": 400\r\n },\r\n {\r\n \"key\": \"121713\",\r\n \"status\": false,\r\n \"errorMessage\": \"Item is too large\",\r\n \"statusCode\": 400\r\n }\r\n ],\r\n \"warnings\": [\r\n {\r\n \"key\": \"2\",\r\n \"message\": \"This is the first and last warning\"\r\n }\r\n ],\r\n \"itemsProcessed\": 124876,\r\n \"itemsFailed\": 2,\r\n \"initialTrackingState\": \"100\",\r\n \"finalTrackingState\": \"200\"\r\n }\r\n ],\r\n \"limits\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -576,7 +579,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:19 GMT" + "Thu, 19 Jul 2018 17:51:05 GMT" ], "Pragma": [ "no-cache" @@ -585,10 +588,10 @@ "Accept-Encoding" ], "request-id": [ - "13c1be73-7692-41ca-908e-0912ec18ec79" + "9f52a502-f2e3-4dcb-a968-1396a7749c2b" ], "elapsed-time": [ - "67" + "21" ], "OData-Version": [ "4.0" @@ -603,26 +606,26 @@ "StatusCode": 200 }, { - "RequestUri": "/indexers('azsmnet9141')/search.status?api-version=2017-11-11-Preview&mock_status=inProgress", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTE0MScpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3Jm1vY2tfc3RhdHVzPWluUHJvZ3Jlc3M=", + "RequestUri": "/indexers('azsmnet1422')/search.status?api-version=2017-11-11-Preview&mock_status=inProgress", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTQyMicpL3NlYXJjaC5zdGF0dXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3Jm1vY2tfc3RhdHVzPWluUHJvZ3Jlc3M=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c556106f-76be-4b26-b749-8324a49cdef7" + "8d325612-313b-4bf5-9e78-1336f05af713" ], "accept-language": [ "en-US" ], "api-key": [ - "119AF7AB22AC02CAF7037F338449EF90" + "039BE2BC3AFEC0BB0E4DF42C931C4147" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2289.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2017_11_11_Preview.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet9141\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"inProgress\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-05-11T02:47:20.3591062Z\",\r\n \"endTime\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"transientFailure\",\r\n \"errorMessage\": \"The indexer could not connect to the data source\",\r\n \"startTime\": \"2018-05-11T02:47:20.3591062Z\",\r\n \"endTime\": \"2018-05-11T02:47:20.3591062Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-05-11T01:47:20.3591062Z\",\r\n \"endTime\": \"2018-05-11T01:47:20.3591062Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n {\r\n \"status\": \"success\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-05-10T02:47:20.3591062Z\",\r\n \"endTime\": \"2018-05-10T03:47:20.3591062Z\",\r\n \"errors\": [\r\n {\r\n \"key\": \"1\",\r\n \"status\": false,\r\n \"errorMessage\": \"Key field contains unsafe characters\",\r\n \"statusCode\": 400\r\n },\r\n {\r\n \"key\": \"121713\",\r\n \"status\": false,\r\n \"errorMessage\": \"Item is too large\",\r\n \"statusCode\": 400\r\n }\r\n ],\r\n \"warnings\": [\r\n {\r\n \"key\": \"2\",\r\n \"message\": \"This is the first and last warning\"\r\n }\r\n ],\r\n \"itemsProcessed\": 124876,\r\n \"itemsFailed\": 2,\r\n \"initialTrackingState\": \"100\",\r\n \"finalTrackingState\": \"200\"\r\n }\r\n ],\r\n \"limits\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6381.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2017_11_11_Preview.IndexerExecutionInfo\",\r\n \"name\": \"azsmnet1422\",\r\n \"status\": \"running\",\r\n \"lastResult\": {\r\n \"status\": \"inProgress\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-07-19T17:51:05.5110929Z\",\r\n \"endTime\": null,\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n \"executionHistory\": [\r\n {\r\n \"status\": \"transientFailure\",\r\n \"errorMessage\": \"The indexer could not connect to the data source\",\r\n \"startTime\": \"2018-07-19T17:51:05.5110929Z\",\r\n \"endTime\": \"2018-07-19T17:51:05.5110929Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n {\r\n \"status\": \"reset\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-07-19T16:51:05.5110929Z\",\r\n \"endTime\": \"2018-07-19T16:51:05.5110929Z\",\r\n \"errors\": [],\r\n \"warnings\": [],\r\n \"itemsProcessed\": 0,\r\n \"itemsFailed\": 0,\r\n \"initialTrackingState\": null,\r\n \"finalTrackingState\": null\r\n },\r\n {\r\n \"status\": \"success\",\r\n \"errorMessage\": null,\r\n \"startTime\": \"2018-07-18T17:51:05.5110929Z\",\r\n \"endTime\": \"2018-07-18T18:51:05.5110929Z\",\r\n \"errors\": [\r\n {\r\n \"key\": \"1\",\r\n \"status\": false,\r\n \"errorMessage\": \"Key field contains unsafe characters\",\r\n \"statusCode\": 400\r\n },\r\n {\r\n \"key\": \"121713\",\r\n \"status\": false,\r\n \"errorMessage\": \"Item is too large\",\r\n \"statusCode\": 400\r\n }\r\n ],\r\n \"warnings\": [\r\n {\r\n \"key\": \"2\",\r\n \"message\": \"This is the first and last warning\"\r\n }\r\n ],\r\n \"itemsProcessed\": 124876,\r\n \"itemsFailed\": 2,\r\n \"initialTrackingState\": \"100\",\r\n \"finalTrackingState\": \"200\"\r\n }\r\n ],\r\n \"limits\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -634,7 +637,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:19 GMT" + "Thu, 19 Jul 2018 17:51:05 GMT" ], "Pragma": [ "no-cache" @@ -643,7 +646,7 @@ "Accept-Encoding" ], "request-id": [ - "c556106f-76be-4b26-b749-8324a49cdef7" + "8d325612-313b-4bf5-9e78-1336f05af713" ], "elapsed-time": [ "1" @@ -661,19 +664,19 @@ "StatusCode": 200 }, { - "RequestUri": "/indexers('azsmnet9141')/search.run?api-version=2017-11-11-Preview&mock_status=inProgress", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTE0MScpL3NlYXJjaC5ydW4/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3Jm1vY2tfc3RhdHVzPWluUHJvZ3Jlc3M=", + "RequestUri": "/indexers('azsmnet1422')/search.run?api-version=2017-11-11-Preview&mock_status=inProgress", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTQyMicpL3NlYXJjaC5ydW4/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3Jm1vY2tfc3RhdHVzPWluUHJvZ3Jlc3M=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "f6067484-2b6e-4d56-bfd9-7b3c81ebca8d" + "9abe0570-3ef8-41d4-90eb-006e201ae3de" ], "accept-language": [ "en-US" ], "api-key": [ - "119AF7AB22AC02CAF7037F338449EF90" + "039BE2BC3AFEC0BB0E4DF42C931C4147" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -692,16 +695,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:19 GMT" + "Thu, 19 Jul 2018 17:51:05 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "f6067484-2b6e-4d56-bfd9-7b3c81ebca8d" + "9abe0570-3ef8-41d4-90eb-006e201ae3de" ], "elapsed-time": [ - "98" + "80" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" @@ -710,13 +713,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet261/providers/Microsoft.Search/searchServices/azs-2289?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTIyODk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2246/providers/Microsoft.Search/searchServices/azs-6381?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzgxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff825da8-1cb4-43e8-8e14-4e3b854e80d5" + "3d3f2949-c496-4ba0-8fc8-03d940a33948" ], "accept-language": [ "en-US" @@ -738,31 +741,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:24 GMT" + "Thu, 19 Jul 2018 17:51:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ff825da8-1cb4-43e8-8e14-4e3b854e80d5" + "3d3f2949-c496-4ba0-8fc8-03d940a33948" ], "request-id": [ - "ff825da8-1cb4-43e8-8e14-4e3b854e80d5" + "3d3f2949-c496-4ba0-8fc8-03d940a33948" ], "elapsed-time": [ - "1177" + "786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14951" + "14971" ], "x-ms-correlation-request-id": [ - "42bcbe1b-deb7-4ebc-9b55-adaf06c170da" + "08df127d-3d0c-41ed-8490-e355f2b3a92d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024725Z:42bcbe1b-deb7-4ebc-9b55-adaf06c170da" + "NORTHEUROPE:20180719T175110Z:08df127d-3d0c-41ed-8490-e355f2b3a92d" ], "X-Content-Type-Options": [ "nosniff" @@ -773,13 +776,13 @@ ], "Names": { "GenerateName": [ - "azsmnet261", - "azsmnet7835", - "azsmnet8033", - "azsmnet9141" + "azsmnet2246", + "azsmnet7467", + "azsmnet7070", + "azsmnet1422" ], "GenerateServiceName": [ - "azs-2289" + "azs-6381" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanUpdateIndexer.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanUpdateIndexer.json index 452ce87fbe09..c0f689b0d8fc 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanUpdateIndexer.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CanUpdateIndexer.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "302a6c55-919d-40cd-90be-80de04035145" + "3434a205-6abe-402f-85fd-cb31e650e3b7" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:16 GMT" + "Thu, 19 Jul 2018 17:53:23 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1083" + "1143" ], "x-ms-request-id": [ - "bda9f6ac-d2aa-49e3-a171-e285d5224c11" + "6517d26a-ac62-456e-af57-d38e5e51ae4d" ], "x-ms-correlation-request-id": [ - "bda9f6ac-d2aa-49e3-a171-e285d5224c11" + "6517d26a-ac62-456e-af57-d38e5e51ae4d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024917Z:bda9f6ac-d2aa-49e3-a171-e285d5224c11" + "NORTHEUROPE:20180719T175324Z:6517d26a-ac62-456e-af57-d38e5e51ae4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9998?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5OTk4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1734?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNzM0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "caed1e5e-e684-4bee-aaba-46efc300532d" + "417e419f-74a7-4536-a83e-fdd4a5b5d314" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9998\",\r\n \"name\": \"azsmnet9998\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1734\",\r\n \"name\": \"azsmnet1734\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:17 GMT" + "Thu, 19 Jul 2018 17:53:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1082" + "1142" ], "x-ms-request-id": [ - "2b19a23f-8180-48c5-be2b-61ba930eb111" + "8c164388-de2f-4a37-8e16-43ee58c4ee6b" ], "x-ms-correlation-request-id": [ - "2b19a23f-8180-48c5-be2b-61ba930eb111" + "8c164388-de2f-4a37-8e16-43ee58c4ee6b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024918Z:2b19a23f-8180-48c5-be2b-61ba930eb111" + "NORTHEUROPE:20180719T175325Z:8c164388-de2f-4a37-8e16-43ee58c4ee6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9998/providers/Microsoft.Search/searchServices/azs-8615?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjE1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1734/providers/Microsoft.Search/searchServices/azs-7535?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTM1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "7e5f39bd-36bd-4e21-94ab-d3ee6a1c34dc" + "38104efe-d76a-4505-89e8-bed2629d8d8b" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9998/providers/Microsoft.Search/searchServices/azs-8615\",\r\n \"name\": \"azs-8615\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1734/providers/Microsoft.Search/searchServices/azs-7535\",\r\n \"name\": \"azs-7535\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:21 GMT" + "Thu, 19 Jul 2018 17:53:30 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A49%3A21.537122Z'\"" + "W/\"datetime'2018-07-19T17%3A53%3A30.5832983Z'\"" ], "x-ms-request-id": [ - "7e5f39bd-36bd-4e21-94ab-d3ee6a1c34dc" + "38104efe-d76a-4505-89e8-bed2629d8d8b" ], "request-id": [ - "7e5f39bd-36bd-4e21-94ab-d3ee6a1c34dc" + "38104efe-d76a-4505-89e8-bed2629d8d8b" ], "elapsed-time": [ - "1001" + "1653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1105" + "1136" ], "x-ms-correlation-request-id": [ - "07bfaee0-377f-4c01-a5e2-32e197e11c51" + "95865edd-2e85-459d-a28d-23fbb5c1f8f7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024922Z:07bfaee0-377f-4c01-a5e2-32e197e11c51" + "NORTHEUROPE:20180719T175331Z:95865edd-2e85-459d-a28d-23fbb5c1f8f7" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9998/providers/Microsoft.Search/searchServices/azs-8615/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjE1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1734/providers/Microsoft.Search/searchServices/azs-7535/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTM1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fa2882f-f549-4b20-af33-4c976935f323" + "02fa559c-4432-4f19-ba4c-bfefa3ac12c5" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"6337F7D61050002ABFBF53515B513C9C\",\r\n \"secondaryKey\": \"40AD3CA5721F9FD60F19D36DB317526A\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"79187FAB8C073924B4E060C41C12001F\",\r\n \"secondaryKey\": \"02A5F5F5E4936F53E39806748CB91238\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:23 GMT" + "Thu, 19 Jul 2018 17:53:33 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2fa2882f-f549-4b20-af33-4c976935f323" + "02fa559c-4432-4f19-ba4c-bfefa3ac12c5" ], "request-id": [ - "2fa2882f-f549-4b20-af33-4c976935f323" + "02fa559c-4432-4f19-ba4c-bfefa3ac12c5" ], "elapsed-time": [ - "403" + "219" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1104" + "1135" ], "x-ms-correlation-request-id": [ - "18549b22-7120-4b10-aa00-52b078ce6812" + "4ee5ba45-c072-4bc5-b280-5c74edd23ffc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024924Z:18549b22-7120-4b10-aa00-52b078ce6812" + "NORTHEUROPE:20180719T175333Z:4ee5ba45-c072-4bc5-b280-5c74edd23ffc" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9998/providers/Microsoft.Search/searchServices/azs-8615/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjE1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1734/providers/Microsoft.Search/searchServices/azs-7535/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTM1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4655d23f-7a1d-47e6-871f-c20cfabd45b4" + "083e55f2-fad3-407a-ae7a-589640c1a4ec" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3B78F5933A58A2BB220227D3DAF99BBB\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C4D3B62A0BC9CBE49309A03A02AA9DFA\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:24 GMT" + "Thu, 19 Jul 2018 17:53:33 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4655d23f-7a1d-47e6-871f-c20cfabd45b4" + "083e55f2-fad3-407a-ae7a-589640c1a4ec" ], "request-id": [ - "4655d23f-7a1d-47e6-871f-c20cfabd45b4" + "083e55f2-fad3-407a-ae7a-589640c1a4ec" ], "elapsed-time": [ - "118" + "267" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14987" ], "x-ms-correlation-request-id": [ - "c56cc8d8-2f63-4672-99e2-9aff025f3d8c" + "3c3bd3e6-1cec-4b99-a1ea-d9eb5758c24b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024924Z:c56cc8d8-2f63-4672-99e2-9aff025f3d8c" + "NORTHEUROPE:20180719T175333Z:3c3bd3e6-1cec-4b99-a1ea-d9eb5758c24b" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1989\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1745\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "36859445-7b1a-4f84-a698-2cc0d8506344" + "42b171da-ca18-4351-b889-592c544bec30" ], "accept-language": [ "en-US" ], "api-key": [ - "6337F7D61050002ABFBF53515B513C9C" + "79187FAB8C073924B4E060C41C12001F" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8615.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9CF4D92A0\\\"\",\r\n \"name\": \"azsmnet1989\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7535.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA08D5DD061\\\"\",\r\n \"name\": \"azsmnet1745\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:25 GMT" + "Thu, 19 Jul 2018 17:53:36 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9CF4D92A0\"" + "W/\"0x8D5EDA08D5DD061\"" ], "Location": [ - "https://azs-8615.search-dogfood.windows-int.net/indexes('azsmnet1989')?api-version=2017-11-11-Preview" + "https://azs-7535.search-dogfood.windows-int.net/indexes('azsmnet1745')?api-version=2017-11-11-Preview" ], "request-id": [ - "36859445-7b1a-4f84-a698-2cc0d8506344" + "42b171da-ca18-4351-b889-592c544bec30" ], "elapsed-time": [ - "794" + "829" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7446\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2124\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "eb402889-704e-46ec-8eb0-b0d4a3141479" + "608545e1-2fd6-4d62-ae35-b85eaa233453" ], "accept-language": [ "en-US" ], "api-key": [ - "6337F7D61050002ABFBF53515B513C9C" + "79187FAB8C073924B4E060C41C12001F" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8615.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9CF5B519C\\\"\",\r\n \"name\": \"azsmnet7446\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7535.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA08D7247BA\\\"\",\r\n \"name\": \"azsmnet2124\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:25 GMT" + "Thu, 19 Jul 2018 17:53:36 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9CF5B519C\"" + "W/\"0x8D5EDA08D7247BA\"" ], "Location": [ - "https://azs-8615.search-dogfood.windows-int.net/datasources('azsmnet7446')?api-version=2017-11-11-Preview" + "https://azs-7535.search-dogfood.windows-int.net/datasources('azsmnet2124')?api-version=2017-11-11-Preview" ], "request-id": [ - "eb402889-704e-46ec-8eb0-b0d4a3141479" + "608545e1-2fd6-4d62-ae35-b85eaa233453" ], "elapsed-time": [ - "40" + "57" ], "OData-Version": [ "4.0" @@ -478,7 +478,7 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8794\",\r\n \"dataSourceName\": \"azsmnet7446\",\r\n \"targetIndexName\": \"azsmnet1989\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7706\",\r\n \"dataSourceName\": \"azsmnet2124\",\r\n \"targetIndexName\": \"azsmnet1745\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -487,20 +487,20 @@ "1127" ], "client-request-id": [ - "94da13d0-9d68-4d11-b2d3-ea77eca2af35" + "71cf509f-60ab-4107-9fc0-ef2353a59e79" ], "accept-language": [ "en-US" ], "api-key": [ - "6337F7D61050002ABFBF53515B513C9C" + "79187FAB8C073924B4E060C41C12001F" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8615.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9D01903D7\\\"\",\r\n \"name\": \"azsmnet8794\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7446\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1989\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7535.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA08E7A0C87\\\"\",\r\n \"name\": \"azsmnet7706\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet2124\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1745\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1111" @@ -515,22 +515,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:26 GMT" + "Thu, 19 Jul 2018 17:53:38 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9D01903D7\"" + "W/\"0x8D5EDA08E7A0C87\"" ], "Location": [ - "https://azs-8615.search-dogfood.windows-int.net/indexers('azsmnet8794')?api-version=2017-11-11-Preview" + "https://azs-7535.search-dogfood.windows-int.net/indexers('azsmnet7706')?api-version=2017-11-11-Preview" ], "request-id": [ - "94da13d0-9d68-4d11-b2d3-ea77eca2af35" + "71cf509f-60ab-4107-9fc0-ef2353a59e79" ], "elapsed-time": [ - "219" + "220" ], "OData-Version": [ "4.0" @@ -545,10 +545,10 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8794')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODc5NCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet7706')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzcwNicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8794\",\r\n \"description\": \"somethingdifferent\",\r\n \"dataSourceName\": \"azsmnet7446\",\r\n \"targetIndexName\": \"azsmnet1989\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7706\",\r\n \"description\": \"somethingdifferent\",\r\n \"dataSourceName\": \"azsmnet2124\",\r\n \"targetIndexName\": \"azsmnet1745\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -557,7 +557,7 @@ "1167" ], "client-request-id": [ - "45eaa3ef-1f75-49e6-8e97-96dce1bb608d" + "fb1ad709-b3d6-4c33-a6e6-c6d726e17895" ], "Prefer": [ "return=representation" @@ -566,14 +566,14 @@ "en-US" ], "api-key": [ - "6337F7D61050002ABFBF53515B513C9C" + "79187FAB8C073924B4E060C41C12001F" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8615.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9D03DFA0A\\\"\",\r\n \"name\": \"azsmnet8794\",\r\n \"description\": \"somethingdifferent\",\r\n \"dataSourceName\": \"azsmnet7446\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1989\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7535.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA08EA545A1\\\"\",\r\n \"name\": \"azsmnet7706\",\r\n \"description\": \"somethingdifferent\",\r\n \"dataSourceName\": \"azsmnet2124\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1745\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -585,22 +585,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:26 GMT" + "Thu, 19 Jul 2018 17:53:38 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9D03DFA0A\"" + "W/\"0x8D5EDA08EA545A1\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "45eaa3ef-1f75-49e6-8e97-96dce1bb608d" + "fb1ad709-b3d6-4c33-a6e6-c6d726e17895" ], "elapsed-time": [ - "113" + "154" ], "OData-Version": [ "4.0" @@ -615,13 +615,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9998/providers/Microsoft.Search/searchServices/azs-8615?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjE1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1734/providers/Microsoft.Search/searchServices/azs-7535?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTM1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c36c35e3-c174-41fb-ae4e-6b049387e76f" + "12f0c736-f42a-4f04-850b-19a1f7adc56c" ], "accept-language": [ "en-US" @@ -643,31 +643,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:32 GMT" + "Thu, 19 Jul 2018 17:53:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c36c35e3-c174-41fb-ae4e-6b049387e76f" + "12f0c736-f42a-4f04-850b-19a1f7adc56c" ], "request-id": [ - "c36c35e3-c174-41fb-ae4e-6b049387e76f" + "12f0c736-f42a-4f04-850b-19a1f7adc56c" ], "elapsed-time": [ - "2024" + "633" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14946" + "14974" ], "x-ms-correlation-request-id": [ - "e780a076-a0bd-44be-97e6-713c9e9aa5df" + "1bffd86b-d9ad-4c0d-9cbb-18d467df1ba3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024932Z:e780a076-a0bd-44be-97e6-713c9e9aa5df" + "NORTHEUROPE:20180719T175342Z:1bffd86b-d9ad-4c0d-9cbb-18d467df1ba3" ], "X-Content-Type-Options": [ "nosniff" @@ -678,14 +678,14 @@ ], "Names": { "GenerateName": [ - "azsmnet9998", - "azsmnet1989", - "azsmnet7446", - "azsmnet8794", - "azsmnet4548" + "azsmnet1734", + "azsmnet1745", + "azsmnet2124", + "azsmnet7706", + "azsmnet5497" ], "GenerateServiceName": [ - "azs-8615" + "azs-7535" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerFailsWithUsefulMessageOnUserError.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerFailsWithUsefulMessageOnUserError.json index 1bbc8c1f948b..6f190d93509a 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerFailsWithUsefulMessageOnUserError.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerFailsWithUsefulMessageOnUserError.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3717861-fbbf-4f5f-9055-8f7e61065ad6" + "a7709b11-7739-4770-8368-f4fad19e13cd" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:54 GMT" + "Thu, 19 Jul 2018 17:53:01 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1107" + "1138" ], "x-ms-request-id": [ - "300d1356-a4a3-4ac3-b844-6bb66580fd3b" + "b94e3bb7-761c-46e5-9770-f67f20c48c3e" ], "x-ms-correlation-request-id": [ - "300d1356-a4a3-4ac3-b844-6bb66580fd3b" + "b94e3bb7-761c-46e5-9770-f67f20c48c3e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024855Z:300d1356-a4a3-4ac3-b844-6bb66580fd3b" + "NORTHEUROPE:20180719T175301Z:b94e3bb7-761c-46e5-9770-f67f20c48c3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6544?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5295?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "3b134e95-c9e2-443e-be73-e20bbad37e0b" + "2488e464-df3b-49fb-a05b-3228c53a695a" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6544\",\r\n \"name\": \"azsmnet6544\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5295\",\r\n \"name\": \"azsmnet5295\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:55 GMT" + "Thu, 19 Jul 2018 17:53:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1106" + "1137" ], "x-ms-request-id": [ - "073f8e2e-4dfe-4e31-99e1-bce85922ebb7" + "369b2c75-76bd-423c-a745-2577bab23de9" ], "x-ms-correlation-request-id": [ - "073f8e2e-4dfe-4e31-99e1-bce85922ebb7" + "369b2c75-76bd-423c-a745-2577bab23de9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024856Z:073f8e2e-4dfe-4e31-99e1-bce85922ebb7" + "NORTHEUROPE:20180719T175302Z:369b2c75-76bd-423c-a745-2577bab23de9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6544/providers/Microsoft.Search/searchServices/azs-6324?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzI0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5295/providers/Microsoft.Search/searchServices/azs-9183?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1Mjk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "3cb9c673-cca6-4968-8f08-5ca2367d2204" + "63185abb-3cd4-4cda-9b68-0ab1353ae4c3" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6544/providers/Microsoft.Search/searchServices/azs-6324\",\r\n \"name\": \"azs-6324\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5295/providers/Microsoft.Search/searchServices/azs-9183\",\r\n \"name\": \"azs-9183\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:00 GMT" + "Thu, 19 Jul 2018 17:53:06 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A49%3A00.1886614Z'\"" + "W/\"datetime'2018-07-19T17%3A53%3A06.1479009Z'\"" ], "x-ms-request-id": [ - "3cb9c673-cca6-4968-8f08-5ca2367d2204" + "63185abb-3cd4-4cda-9b68-0ab1353ae4c3" ], "request-id": [ - "3cb9c673-cca6-4968-8f08-5ca2367d2204" + "63185abb-3cd4-4cda-9b68-0ab1353ae4c3" ], "elapsed-time": [ - "1311" + "1350" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1085" + "1145" ], "x-ms-correlation-request-id": [ - "8da9355e-fb57-45fb-bde8-8f7f15e9743c" + "801baf4e-77b1-4a01-bde2-68125a9c913b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024900Z:8da9355e-fb57-45fb-bde8-8f7f15e9743c" + "NORTHEUROPE:20180719T175306Z:801baf4e-77b1-4a01-bde2-68125a9c913b" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6544/providers/Microsoft.Search/searchServices/azs-6324/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzI0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5295/providers/Microsoft.Search/searchServices/azs-9183/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1Mjk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTgzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e2a0e8e-c0b1-4220-bbdb-3679430afa07" + "e14b5fc0-11e0-417d-b9b8-1d27cb7f99a1" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"6D96B2B8FE94F807E4401C61553C62C3\",\r\n \"secondaryKey\": \"298F32D693BA43A531E16B6063E8B129\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"F3E93BAA360C95A29A30B0395C0B17BE\",\r\n \"secondaryKey\": \"97ED17B48219473C49791775F0FA4171\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:01 GMT" + "Thu, 19 Jul 2018 17:53:09 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2e2a0e8e-c0b1-4220-bbdb-3679430afa07" + "e14b5fc0-11e0-417d-b9b8-1d27cb7f99a1" ], "request-id": [ - "2e2a0e8e-c0b1-4220-bbdb-3679430afa07" + "e14b5fc0-11e0-417d-b9b8-1d27cb7f99a1" ], "elapsed-time": [ - "492" + "242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1084" + "1144" ], "x-ms-correlation-request-id": [ - "0bc8c123-41e9-43a4-b372-d12f805ae522" + "340a2034-9d66-4c5f-ac4e-63bc9ef516c8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024902Z:0bc8c123-41e9-43a4-b372-d12f805ae522" + "NORTHEUROPE:20180719T175309Z:340a2034-9d66-4c5f-ac4e-63bc9ef516c8" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6544/providers/Microsoft.Search/searchServices/azs-6324/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzI0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5295/providers/Microsoft.Search/searchServices/azs-9183/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1Mjk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTgzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61f85911-5958-4621-99cb-c130a2477654" + "226c1f44-46a8-4e54-a2af-2f1f5296867c" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"9D6A1C7A2BF90976625B27A4EB8D6FD3\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"5C4E5D08A78B2850FD44EA38FDE31B70\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:03 GMT" + "Thu, 19 Jul 2018 17:53:09 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "61f85911-5958-4621-99cb-c130a2477654" + "226c1f44-46a8-4e54-a2af-2f1f5296867c" ], "request-id": [ - "61f85911-5958-4621-99cb-c130a2477654" + "226c1f44-46a8-4e54-a2af-2f1f5296867c" ], "elapsed-time": [ - "117" + "230" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14983" ], "x-ms-correlation-request-id": [ - "543d3d5d-1569-4483-b9ed-e88d1ee4dd36" + "4905e4cb-1c43-4ba1-8dfb-6c018747a983" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024903Z:543d3d5d-1569-4483-b9ed-e88d1ee4dd36" + "NORTHEUROPE:20180719T175309Z:4905e4cb-1c43-4ba1-8dfb-6c018747a983" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7821\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1881" + "2350" ], "client-request-id": [ - "e2a868e9-4f64-4c85-b235-522fca106b12" + "7ef78b4d-8b02-41e0-9692-010d2ba319f8" ], "accept-language": [ "en-US" ], "api-key": [ - "6D96B2B8FE94F807E4401C61553C62C3" + "F3E93BAA360C95A29A30B0395C0B17BE" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6324.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9C2C6C31C\\\"\",\r\n \"name\": \"azsmnet3\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9183.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA07ED14600\\\"\",\r\n \"name\": \"azsmnet7821\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2083" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:03 GMT" + "Thu, 19 Jul 2018 17:53:12 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9C2C6C31C\"" + "W/\"0x8D5EDA07ED14600\"" ], "Location": [ - "https://azs-6324.search-dogfood.windows-int.net/indexes('azsmnet3')?api-version=2017-11-11-Preview" + "https://azs-9183.search-dogfood.windows-int.net/indexes('azsmnet7821')?api-version=2017-11-11-Preview" ], "request-id": [ - "e2a868e9-4f64-4c85-b235-522fca106b12" + "7ef78b4d-8b02-41e0-9692-010d2ba319f8" ], "elapsed-time": [ - "946" + "942" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8836\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7443\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "ee8e5ec8-c825-4356-824d-cb791b299467" + "2b73a064-5b8a-46d2-a0b0-20bbfac5528a" ], "accept-language": [ "en-US" ], "api-key": [ - "6D96B2B8FE94F807E4401C61553C62C3" + "F3E93BAA360C95A29A30B0395C0B17BE" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6324.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9C2D40CBF\\\"\",\r\n \"name\": \"azsmnet8836\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9183.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA07EE43659\\\"\",\r\n \"name\": \"azsmnet7443\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:03 GMT" + "Thu, 19 Jul 2018 17:53:12 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9C2D40CBF\"" + "W/\"0x8D5EDA07EE43659\"" ], "Location": [ - "https://azs-6324.search-dogfood.windows-int.net/datasources('azsmnet8836')?api-version=2017-11-11-Preview" + "https://azs-9183.search-dogfood.windows-int.net/datasources('azsmnet7443')?api-version=2017-11-11-Preview" ], "request-id": [ - "ee8e5ec8-c825-4356-824d-cb791b299467" + "2b73a064-5b8a-46d2-a0b0-20bbfac5528a" ], "elapsed-time": [ - "37" + "41" ], "OData-Version": [ "4.0" @@ -478,22 +478,22 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet2847\",\r\n \"dataSourceName\": \"thisdatasourcedoesnotexist\",\r\n \"targetIndexName\": \"azsmnet3\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6625\",\r\n \"dataSourceName\": \"thisdatasourcedoesnotexist\",\r\n \"targetIndexName\": \"azsmnet7821\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1139" + "1142" ], "client-request-id": [ - "4036b96a-cec2-4f40-949e-2bca4734e0cc" + "4110e85c-f6dc-44fc-ac2f-c263c6bcc149" ], "accept-language": [ "en-US" ], "api-key": [ - "6D96B2B8FE94F807E4401C61553C62C3" + "F3E93BAA360C95A29A30B0395C0B17BE" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -518,16 +518,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:04 GMT" + "Thu, 19 Jul 2018 17:53:13 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "4036b96a-cec2-4f40-949e-2bca4734e0cc" + "4110e85c-f6dc-44fc-ac2f-c263c6bcc149" ], "elapsed-time": [ - "27" + "179" ], "OData-Version": [ "4.0" @@ -542,13 +542,13 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6544/providers/Microsoft.Search/searchServices/azs-6324?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzI0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5295/providers/Microsoft.Search/searchServices/azs-9183?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1Mjk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbe458a8-d796-4016-9fa6-3446291ae33b" + "fa9d87a6-e308-4665-b2c9-03994c8f7f01" ], "accept-language": [ "en-US" @@ -570,31 +570,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:09 GMT" + "Thu, 19 Jul 2018 17:53:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fbe458a8-d796-4016-9fa6-3446291ae33b" + "fa9d87a6-e308-4665-b2c9-03994c8f7f01" ], "request-id": [ - "fbe458a8-d796-4016-9fa6-3446291ae33b" + "fa9d87a6-e308-4665-b2c9-03994c8f7f01" ], "elapsed-time": [ - "1205" + "2281" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14954" + "14968" ], "x-ms-correlation-request-id": [ - "2c33faa7-5398-4916-875d-474db7362d07" + "3bf3b861-3d6a-4194-8913-cf10336c30cc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024910Z:2c33faa7-5398-4916-875d-474db7362d07" + "NORTHEUROPE:20180719T175318Z:3bf3b861-3d6a-4194-8913-cf10336c30cc" ], "X-Content-Type-Options": [ "nosniff" @@ -605,13 +605,13 @@ ], "Names": { "GenerateName": [ - "azsmnet6544", - "azsmnet3", - "azsmnet8836", - "azsmnet2847" + "azsmnet5295", + "azsmnet7821", + "azsmnet7443", + "azsmnet6625" ], "GenerateServiceName": [ - "azs-6324" + "azs-9183" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerReturnsCorrectDefinition.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerReturnsCorrectDefinition.json index e19fd20c9d27..313cde723f7b 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerReturnsCorrectDefinition.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateIndexerReturnsCorrectDefinition.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7946d232-21c2-4fad-a46a-366c12ba8f17" + "bdb1f25f-9aaf-41bb-9af6-262a7852d852" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:37 GMT" + "Thu, 19 Jul 2018 17:53:47 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1105" + "1141" ], "x-ms-request-id": [ - "80357406-a290-41d9-9b94-7228b9b91fad" + "138af1ae-d663-4ad5-a2bb-0ab05ca5e278" ], "x-ms-correlation-request-id": [ - "80357406-a290-41d9-9b94-7228b9b91fad" + "138af1ae-d663-4ad5-a2bb-0ab05ca5e278" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024938Z:80357406-a290-41d9-9b94-7228b9b91fad" + "NORTHEUROPE:20180719T175347Z:138af1ae-d663-4ad5-a2bb-0ab05ca5e278" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5011?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MDExP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8356?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MzU2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "c7559fa9-87f2-49be-8ee4-443c4e331ed6" + "a6d75a84-6008-4e8a-94a2-60728ea81a0a" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5011\",\r\n \"name\": \"azsmnet5011\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8356\",\r\n \"name\": \"azsmnet8356\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:38 GMT" + "Thu, 19 Jul 2018 17:53:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1104" + "1140" ], "x-ms-request-id": [ - "214434fc-359b-4cef-824e-a839c95aa4c5" + "a1d44cd7-6b41-4b20-aecb-0dc6c96ba26c" ], "x-ms-correlation-request-id": [ - "214434fc-359b-4cef-824e-a839c95aa4c5" + "a1d44cd7-6b41-4b20-aecb-0dc6c96ba26c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024938Z:214434fc-359b-4cef-824e-a839c95aa4c5" + "NORTHEUROPE:20180719T175348Z:a1d44cd7-6b41-4b20-aecb-0dc6c96ba26c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5011/providers/Microsoft.Search/searchServices/azs-7834?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODM0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8356/providers/Microsoft.Search/searchServices/azs-8906?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTA2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "7783e68f-d196-4feb-9030-b2913396c219" + "5c781eda-ab10-48ed-bf76-ccbcafb6f6bd" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5011/providers/Microsoft.Search/searchServices/azs-7834\",\r\n \"name\": \"azs-7834\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8356/providers/Microsoft.Search/searchServices/azs-8906\",\r\n \"name\": \"azs-8906\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:42 GMT" + "Thu, 19 Jul 2018 17:53:52 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A49%3A43.0717599Z'\"" + "W/\"datetime'2018-07-19T17%3A53%3A52.23503Z'\"" ], "x-ms-request-id": [ - "7783e68f-d196-4feb-9030-b2913396c219" + "5c781eda-ab10-48ed-bf76-ccbcafb6f6bd" ], "request-id": [ - "7783e68f-d196-4feb-9030-b2913396c219" + "5c781eda-ab10-48ed-bf76-ccbcafb6f6bd" ], "elapsed-time": [ - "940" + "1072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1100" + "1141" ], "x-ms-correlation-request-id": [ - "59920b41-c17d-491d-b740-c6034300cfec" + "c25cef2d-c1c9-4b18-9dc2-cab175f8f354" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024943Z:59920b41-c17d-491d-b740-c6034300cfec" + "NORTHEUROPE:20180719T175353Z:c25cef2d-c1c9-4b18-9dc2-cab175f8f354" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5011/providers/Microsoft.Search/searchServices/azs-7834/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODM0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8356/providers/Microsoft.Search/searchServices/azs-8906/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTA2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6deb82d-33ac-4af4-b243-5058c7118736" + "cdafe274-9a4a-4733-a7f8-4c7099b46bf6" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"2B94A0DF6B743FC758E9F8C6DCDFF874\",\r\n \"secondaryKey\": \"9BB063541CA310B4EEF74BD36DF140DB\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"B1C3A62CEF53C0C8A1EF306AE5D4D787\",\r\n \"secondaryKey\": \"55639884C1D83E6FA890C460A1A07C75\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:45 GMT" + "Thu, 19 Jul 2018 17:53:55 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6deb82d-33ac-4af4-b243-5058c7118736" + "cdafe274-9a4a-4733-a7f8-4c7099b46bf6" ], "request-id": [ - "e6deb82d-33ac-4af4-b243-5058c7118736" + "cdafe274-9a4a-4733-a7f8-4c7099b46bf6" ], "elapsed-time": [ - "173" + "205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1099" + "1140" ], "x-ms-correlation-request-id": [ - "731cbb44-5249-4311-864f-aac65fb903c1" + "60bf0ca1-6c01-402c-aafd-f47bb888faf1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024945Z:731cbb44-5249-4311-864f-aac65fb903c1" + "NORTHEUROPE:20180719T175355Z:60bf0ca1-6c01-402c-aafd-f47bb888faf1" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5011/providers/Microsoft.Search/searchServices/azs-7834/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODM0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8356/providers/Microsoft.Search/searchServices/azs-8906/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTA2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4af33522-f8ab-455c-90e3-c8801595cbf6" + "a38a24ff-110d-4713-b869-c9890443f74b" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"75221E46C75835EAF6EEF5B6B0066588\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2DF7BD56CB9F4D16E50F6ED7046A0C63\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:45 GMT" + "Thu, 19 Jul 2018 17:53:55 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4af33522-f8ab-455c-90e3-c8801595cbf6" + "a38a24ff-110d-4713-b869-c9890443f74b" ], "request-id": [ - "4af33522-f8ab-455c-90e3-c8801595cbf6" + "a38a24ff-110d-4713-b869-c9890443f74b" ], "elapsed-time": [ - "140" + "233" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14982" ], "x-ms-correlation-request-id": [ - "eb416803-f59f-4fac-9267-2bd986ac8fdb" + "3a6d808a-aa2d-4c04-8779-f980e9116c76" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024945Z:eb416803-f59f-4fac-9267-2bd986ac8fdb" + "NORTHEUROPE:20180719T175356Z:3a6d808a-aa2d-4c04-8779-f980e9116c76" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5749\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8961\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "7714db35-5442-444e-ba63-39650267facf" + "54428ead-94a7-4a19-8d56-6730b5604352" ], "accept-language": [ "en-US" ], "api-key": [ - "2B94A0DF6B743FC758E9F8C6DCDFF874" + "B1C3A62CEF53C0C8A1EF306AE5D4D787" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7834.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9DC81959C\\\"\",\r\n \"name\": \"azsmnet5749\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8906.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA09A7A694A\\\"\",\r\n \"name\": \"azsmnet8961\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:47 GMT" + "Thu, 19 Jul 2018 17:53:58 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9DC81959C\"" + "W/\"0x8D5EDA09A7A694A\"" ], "Location": [ - "https://azs-7834.search-dogfood.windows-int.net/indexes('azsmnet5749')?api-version=2017-11-11-Preview" + "https://azs-8906.search-dogfood.windows-int.net/indexes('azsmnet8961')?api-version=2017-11-11-Preview" ], "request-id": [ - "7714db35-5442-444e-ba63-39650267facf" + "54428ead-94a7-4a19-8d56-6730b5604352" ], "elapsed-time": [ - "1676" + "858" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet9235\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6548\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "38d7ee25-2c4f-47ae-b13a-a66b8841913e" + "7ed0f0c7-5f0d-4b89-906d-34ce8081142a" ], "accept-language": [ "en-US" ], "api-key": [ - "2B94A0DF6B743FC758E9F8C6DCDFF874" + "B1C3A62CEF53C0C8A1EF306AE5D4D787" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7834.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9DC8F0664\\\"\",\r\n \"name\": \"azsmnet9235\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8906.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA09A8D59A4\\\"\",\r\n \"name\": \"azsmnet6548\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:47 GMT" + "Thu, 19 Jul 2018 17:53:58 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9DC8F0664\"" + "W/\"0x8D5EDA09A8D59A4\"" ], "Location": [ - "https://azs-7834.search-dogfood.windows-int.net/datasources('azsmnet9235')?api-version=2017-11-11-Preview" + "https://azs-8906.search-dogfood.windows-int.net/datasources('azsmnet6548')?api-version=2017-11-11-Preview" ], "request-id": [ - "38d7ee25-2c4f-47ae-b13a-a66b8841913e" + "7ed0f0c7-5f0d-4b89-906d-34ce8081142a" ], "elapsed-time": [ - "40" + "46" ], "OData-Version": [ "4.0" @@ -478,7 +478,7 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4359\",\r\n \"dataSourceName\": \"azsmnet9235\",\r\n \"targetIndexName\": \"azsmnet5749\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": 50,\r\n \"maxFailedItems\": 10,\r\n \"maxFailedItemsPerBatch\": 10\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"disabled\": true\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3979\",\r\n \"dataSourceName\": \"azsmnet6548\",\r\n \"targetIndexName\": \"azsmnet8961\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": 50,\r\n \"maxFailedItems\": 10,\r\n \"maxFailedItemsPerBatch\": 10\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"disabled\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -487,20 +487,20 @@ "1256" ], "client-request-id": [ - "272c0d91-23ef-48ad-8949-6b2ab37f8a24" + "6d76a80a-9f47-4a48-973e-316dd7bfaeec" ], "accept-language": [ "en-US" ], "api-key": [ - "2B94A0DF6B743FC758E9F8C6DCDFF874" + "B1C3A62CEF53C0C8A1EF306AE5D4D787" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7834.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9DD4D06D7\\\"\",\r\n \"name\": \"azsmnet4359\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet9235\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5749\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": 50,\r\n \"maxFailedItems\": 10,\r\n \"maxFailedItemsPerBatch\": 10,\r\n \"base64EncodeKeys\": null,\r\n \"configuration\": {}\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": true\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8906.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA09B44C816\\\"\",\r\n \"name\": \"azsmnet3979\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet6548\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8961\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": {\r\n \"batchSize\": 50,\r\n \"maxFailedItems\": 10,\r\n \"maxFailedItemsPerBatch\": 10,\r\n \"base64EncodeKeys\": null,\r\n \"configuration\": {}\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": true\r\n}", "ResponseHeaders": { "Content-Length": [ "1214" @@ -515,22 +515,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:49 GMT" + "Thu, 19 Jul 2018 17:53:59 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9DD4D06D7\"" + "W/\"0x8D5EDA09B44C816\"" ], "Location": [ - "https://azs-7834.search-dogfood.windows-int.net/indexers('azsmnet4359')?api-version=2017-11-11-Preview" + "https://azs-8906.search-dogfood.windows-int.net/indexers('azsmnet3979')?api-version=2017-11-11-Preview" ], "request-id": [ - "272c0d91-23ef-48ad-8949-6b2ab37f8a24" + "6d76a80a-9f47-4a48-973e-316dd7bfaeec" ], "elapsed-time": [ - "141" + "70" ], "OData-Version": [ "4.0" @@ -545,13 +545,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5011/providers/Microsoft.Search/searchServices/azs-7834?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODM0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8356/providers/Microsoft.Search/searchServices/azs-8906?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTA2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af149d02-5686-4d5d-8108-163e66fa8fbb" + "134eeb23-3422-4bb8-9e38-d2f3f9467034" ], "accept-language": [ "en-US" @@ -573,31 +573,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:53 GMT" + "Thu, 19 Jul 2018 17:54:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "af149d02-5686-4d5d-8108-163e66fa8fbb" + "134eeb23-3422-4bb8-9e38-d2f3f9467034" ], "request-id": [ - "af149d02-5686-4d5d-8108-163e66fa8fbb" + "134eeb23-3422-4bb8-9e38-d2f3f9467034" ], "elapsed-time": [ - "1019" + "622" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14948" + "14967" ], "x-ms-correlation-request-id": [ - "b3218cc3-5454-430d-a755-f434fcf45146" + "32459363-282b-4ec9-9411-5ee09c48d64b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024953Z:b3218cc3-5454-430d-a755-f434fcf45146" + "NORTHEUROPE:20180719T175403Z:32459363-282b-4ec9-9411-5ee09c48d64b" ], "X-Content-Type-Options": [ "nosniff" @@ -608,13 +608,13 @@ ], "Names": { "GenerateName": [ - "azsmnet5011", - "azsmnet5749", - "azsmnet9235", - "azsmnet4359" + "azsmnet8356", + "azsmnet8961", + "azsmnet6548", + "azsmnet3979" ], "GenerateServiceName": [ - "azs-7834" + "azs-8906" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerDoesNotExist.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerDoesNotExist.json index 0e19913defd3..2d4f0ad6926e 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerDoesNotExist.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerDoesNotExist.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9ddb766-bfc7-4a3d-92f1-4aed1704a7c7" + "133cb363-066b-47f3-bf80-e7c5bb581ea4" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:22 GMT" + "Thu, 19 Jul 2018 17:49:00 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1125" + "1153" ], "x-ms-request-id": [ - "d6390943-c345-434a-a2a0-b78d391a10fc" + "20607023-f274-43e8-a9c3-e254e44c8a6e" ], "x-ms-correlation-request-id": [ - "d6390943-c345-434a-a2a0-b78d391a10fc" + "20607023-f274-43e8-a9c3-e254e44c8a6e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024522Z:d6390943-c345-434a-a2a0-b78d391a10fc" + "NORTHEUROPE:20180719T174900Z:20607023-f274-43e8-a9c3-e254e44c8a6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6031?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MDMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6313?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MzEzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "70aecc53-d1a6-4d57-a9a0-84240edb3904" + "7e68e6ec-94d1-450e-8998-051a742f6bb3" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6031\",\r\n \"name\": \"azsmnet6031\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6313\",\r\n \"name\": \"azsmnet6313\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:22 GMT" + "Thu, 19 Jul 2018 17:49:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1124" + "1152" ], "x-ms-request-id": [ - "60f6bc31-cd5f-454c-9663-c30c027e9b79" + "5ea69520-75ec-4343-a8ed-c583f0361440" ], "x-ms-correlation-request-id": [ - "60f6bc31-cd5f-454c-9663-c30c027e9b79" + "5ea69520-75ec-4343-a8ed-c583f0361440" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024523Z:60f6bc31-cd5f-454c-9663-c30c027e9b79" + "NORTHEUROPE:20180719T174900Z:5ea69520-75ec-4343-a8ed-c583f0361440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6031/providers/Microsoft.Search/searchServices/azs-4872?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00ODcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6313/providers/Microsoft.Search/searchServices/azs-1773?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "5222249d-8b43-4270-a461-8b4c8760b32c" + "b0e561b6-5cda-449a-ad63-5503cc077b37" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6031/providers/Microsoft.Search/searchServices/azs-4872\",\r\n \"name\": \"azs-4872\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6313/providers/Microsoft.Search/searchServices/azs-1773\",\r\n \"name\": \"azs-1773\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:27 GMT" + "Thu, 19 Jul 2018 17:49:05 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A45%3A27.4218104Z'\"" + "W/\"datetime'2018-07-19T17%3A49%3A04.8878929Z'\"" ], "x-ms-request-id": [ - "5222249d-8b43-4270-a461-8b4c8760b32c" + "b0e561b6-5cda-449a-ad63-5503cc077b37" ], "request-id": [ - "5222249d-8b43-4270-a461-8b4c8760b32c" + "b0e561b6-5cda-449a-ad63-5503cc077b37" ], "elapsed-time": [ - "1823" + "1411" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1091" + "1153" ], "x-ms-correlation-request-id": [ - "d277e8e9-5c44-4653-a765-40f3d9142200" + "be78279e-6f0d-422e-ad5b-9431bbbf1a35" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024528Z:d277e8e9-5c44-4653-a765-40f3d9142200" + "NORTHEUROPE:20180719T174905Z:be78279e-6f0d-422e-ad5b-9431bbbf1a35" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6031/providers/Microsoft.Search/searchServices/azs-4872/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00ODcyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6313/providers/Microsoft.Search/searchServices/azs-1773/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzczL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55ffb38c-330a-488b-bfe5-5f23d80eb9cb" + "276f199c-d1fe-4010-bcb2-e833e906bfed" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9145CE848805A238010DE3265D80658C\",\r\n \"secondaryKey\": \"B60F6F09AEF1775AEE9181CE670D3F6B\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"AD316F59EB33CDA10FBD98E23B24F135\",\r\n \"secondaryKey\": \"9A99FDEAC16AD6B33C36252871BF9699\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:30 GMT" + "Thu, 19 Jul 2018 17:49:08 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "55ffb38c-330a-488b-bfe5-5f23d80eb9cb" + "276f199c-d1fe-4010-bcb2-e833e906bfed" ], "request-id": [ - "55ffb38c-330a-488b-bfe5-5f23d80eb9cb" + "276f199c-d1fe-4010-bcb2-e833e906bfed" ], "elapsed-time": [ - "242" + "239" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1090" + "1141" ], "x-ms-correlation-request-id": [ - "d48d7379-6d7b-490d-bc1e-23e14a63b478" + "1f6a8398-989e-4b4f-858d-d3ed0618a20b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024530Z:d48d7379-6d7b-490d-bc1e-23e14a63b478" + "NORTHEUROPE:20180719T174908Z:1f6a8398-989e-4b4f-858d-d3ed0618a20b" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6031/providers/Microsoft.Search/searchServices/azs-4872/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00ODcyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6313/providers/Microsoft.Search/searchServices/azs-1773/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzczL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b77f7e5-23fe-4f4f-8463-c099587e2b63" + "d5794503-f187-41b7-b9be-82e84f0b943e" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"582A8E9588CC2FB525F52F3F6DA6AC91\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C3A9C3ECC4ABCE4CBF535A6A668DFD3A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:30 GMT" + "Thu, 19 Jul 2018 17:49:09 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b77f7e5-23fe-4f4f-8463-c099587e2b63" + "d5794503-f187-41b7-b9be-82e84f0b943e" ], "request-id": [ - "9b77f7e5-23fe-4f4f-8463-c099587e2b63" + "d5794503-f187-41b7-b9be-82e84f0b943e" ], "elapsed-time": [ - "231" + "229" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14983" ], "x-ms-correlation-request-id": [ - "13f8a23d-5c33-437d-bc01-fd13a3619ee7" + "8ecaf92b-4bfb-4324-b88a-43e4ec8829e6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024530Z:13f8a23d-5c33-437d-bc01-fd13a3619ee7" + "NORTHEUROPE:20180719T174909Z:8ecaf92b-4bfb-4324-b88a-43e4ec8829e6" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet9079\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9431\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "1615bab9-f985-406a-ab41-5c74d5f4a369" + "4a1df380-9ef9-46c1-85ba-59d470f23b18" ], "accept-language": [ "en-US" ], "api-key": [ - "9145CE848805A238010DE3265D80658C" + "AD316F59EB33CDA10FBD98E23B24F135" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4872.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E943EC88DB\\\"\",\r\n \"name\": \"azsmnet9079\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1773.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FEFFBC382\\\"\",\r\n \"name\": \"azsmnet9431\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:32 GMT" + "Thu, 19 Jul 2018 17:49:12 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E943EC88DB\"" + "W/\"0x8D5ED9FEFFBC382\"" ], "Location": [ - "https://azs-4872.search-dogfood.windows-int.net/indexes('azsmnet9079')?api-version=2017-11-11-Preview" + "https://azs-1773.search-dogfood.windows-int.net/indexes('azsmnet9431')?api-version=2017-11-11-Preview" ], "request-id": [ - "1615bab9-f985-406a-ab41-5c74d5f4a369" + "4a1df380-9ef9-46c1-85ba-59d470f23b18" ], "elapsed-time": [ - "868" + "1498" ], "OData-Version": [ "4.0" @@ -408,32 +408,32 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet9131\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet870\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "321" + "320" ], "client-request-id": [ - "79d31c10-325e-47b3-970b-b99d656b5556" + "28b8d32f-af36-4f65-8ade-c7542899c199" ], "accept-language": [ "en-US" ], "api-key": [ - "9145CE848805A238010DE3265D80658C" + "AD316F59EB33CDA10FBD98E23B24F135" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4872.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E943FB598C\\\"\",\r\n \"name\": \"azsmnet9131\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1773.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FF017B6BF\\\"\",\r\n \"name\": \"azsmnet870\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "527" + "526" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:32 GMT" + "Thu, 19 Jul 2018 17:49:12 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E943FB598C\"" + "W/\"0x8D5ED9FF017B6BF\"" ], "Location": [ - "https://azs-4872.search-dogfood.windows-int.net/datasources('azsmnet9131')?api-version=2017-11-11-Preview" + "https://azs-1773.search-dogfood.windows-int.net/datasources('azsmnet870')?api-version=2017-11-11-Preview" ], "request-id": [ - "79d31c10-325e-47b3-970b-b99d656b5556" + "28b8d32f-af36-4f65-8ade-c7542899c199" ], "elapsed-time": [ - "39" + "56" ], "OData-Version": [ "4.0" @@ -475,19 +475,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet7684')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzY4NCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet2257')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MjI1NycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet7684\",\r\n \"dataSourceName\": \"azsmnet9131\",\r\n \"targetIndexName\": \"azsmnet9079\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2257\",\r\n \"dataSourceName\": \"azsmnet870\",\r\n \"targetIndexName\": \"azsmnet9431\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1126" ], "client-request-id": [ - "1b04d75c-8c7a-46a5-aa24-4547098f0c1f" + "862cfcb3-713a-4acb-ac49-c9bd2b7a2906" ], "Prefer": [ "return=representation" @@ -496,17 +496,17 @@ "en-US" ], "api-key": [ - "9145CE848805A238010DE3265D80658C" + "AD316F59EB33CDA10FBD98E23B24F135" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4872.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E94511A1BF\\\"\",\r\n \"name\": \"azsmnet7684\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet9131\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet9079\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1773.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FF14EFBD7\\\"\",\r\n \"name\": \"azsmnet2257\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet870\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet9431\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1111" + "1110" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -518,22 +518,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:33 GMT" + "Thu, 19 Jul 2018 17:49:14 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E94511A1BF\"" + "W/\"0x8D5ED9FF14EFBD7\"" ], "Location": [ - "https://azs-4872.search-dogfood.windows-int.net/indexers('azsmnet7684')?api-version=2017-11-11-Preview" + "https://azs-1773.search-dogfood.windows-int.net/indexers('azsmnet2257')?api-version=2017-11-11-Preview" ], "request-id": [ - "1b04d75c-8c7a-46a5-aa24-4547098f0c1f" + "862cfcb3-713a-4acb-ac49-c9bd2b7a2906" ], "elapsed-time": [ - "769" + "996" ], "OData-Version": [ "4.0" @@ -548,13 +548,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6031/providers/Microsoft.Search/searchServices/azs-4872?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00ODcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6313/providers/Microsoft.Search/searchServices/azs-1773?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b7d74ad-944d-4e9a-b30b-407590552a86" + "249ed6b6-5fb3-4145-978b-10915b36f12e" ], "accept-language": [ "en-US" @@ -576,31 +576,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:37 GMT" + "Thu, 19 Jul 2018 17:49:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6b7d74ad-944d-4e9a-b30b-407590552a86" + "249ed6b6-5fb3-4145-978b-10915b36f12e" ], "request-id": [ - "6b7d74ad-944d-4e9a-b30b-407590552a86" + "249ed6b6-5fb3-4145-978b-10915b36f12e" ], "elapsed-time": [ - "847" + "1453" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14951" + "14975" ], "x-ms-correlation-request-id": [ - "c35b4eac-45f8-4920-a70b-56b6f11479a8" + "5a85b956-f1b9-4e9e-8e5e-a9fe11763aa5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024538Z:c35b4eac-45f8-4920-a70b-56b6f11479a8" + "NORTHEUROPE:20180719T174919Z:5a85b956-f1b9-4e9e-8e5e-a9fe11763aa5" ], "X-Content-Type-Options": [ "nosniff" @@ -611,13 +611,13 @@ ], "Names": { "GenerateName": [ - "azsmnet6031", - "azsmnet9079", - "azsmnet9131", - "azsmnet7684" + "azsmnet6313", + "azsmnet9431", + "azsmnet870", + "azsmnet2257" ], "GenerateServiceName": [ - "azs-4872" + "azs-1773" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerWithSkillsetDoesNotExist.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerWithSkillsetDoesNotExist.json new file mode 100644 index 000000000000..d402b8308c00 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateCreatesWhenIndexerWithSkillsetDoesNotExist.json @@ -0,0 +1,699 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddf48695-3787-46a0-b358-201d5d4ac0ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1157" + ], + "x-ms-request-id": [ + "6b46d2b6-3113-48f9-ba0b-ef6193f3e757" + ], + "x-ms-correlation-request-id": [ + "6b46d2b6-3113-48f9-ba0b-ef6193f3e757" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T174721Z:6b46d2b6-3113-48f9-ba0b-ef6193f3e757" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4422?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NDIyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "4a405dc9-60ac-43dd-bddc-664aac145584" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4422\",\r\n \"name\": \"azsmnet4422\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1156" + ], + "x-ms-request-id": [ + "47c0f160-3925-4877-aef9-2837104eb20e" + ], + "x-ms-correlation-request-id": [ + "47c0f160-3925-4877-aef9-2837104eb20e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T174721Z:47c0f160-3925-4877-aef9-2837104eb20e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4422/providers/Microsoft.Search/searchServices/azs-7698?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Njk4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "b82d483f-3ac0-4f46-8d35-f4a9b3c7e3e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4422/providers/Microsoft.Search/searchServices/azs-7698\",\r\n \"name\": \"azs-7698\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A47%3A25.4797045Z'\"" + ], + "x-ms-request-id": [ + "b82d483f-3ac0-4f46-8d35-f4a9b3c7e3e7" + ], + "request-id": [ + "b82d483f-3ac0-4f46-8d35-f4a9b3c7e3e7" + ], + "elapsed-time": [ + "1229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1157" + ], + "x-ms-correlation-request-id": [ + "d78d8c78-66b8-42af-962d-ceceb0b8c5b6" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T174726Z:d78d8c78-66b8-42af-962d-ceceb0b8c5b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4422/providers/Microsoft.Search/searchServices/azs-7698/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Njk4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3d52f48-6998-4b7c-b891-f625bf71fb6b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"DC5B9BC35E6B28FC9295C8F27ECC2604\",\r\n \"secondaryKey\": \"968B7F6835BD0D535F147CFFD5F481C4\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a3d52f48-6998-4b7c-b891-f625bf71fb6b" + ], + "request-id": [ + "a3d52f48-6998-4b7c-b891-f625bf71fb6b" + ], + "elapsed-time": [ + "227" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1156" + ], + "x-ms-correlation-request-id": [ + "36760db3-0545-4757-9b55-de6f4ff69b78" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T174728Z:36760db3-0545-4757-9b55-de6f4ff69b78" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4422/providers/Microsoft.Search/searchServices/azs-7698/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Njk4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec9c365e-9294-42e3-b31a-c54679b0770a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"76EB5D10B3A9B202F79B38A81DF9A3B5\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ec9c365e-9294-42e3-b31a-c54679b0770a" + ], + "request-id": [ + "ec9c365e-9294-42e3-b31a-c54679b0770a" + ], + "elapsed-time": [ + "237" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "034616cc-d4b3-4c01-ad27-15bbdfd0145f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T174729Z:034616cc-d4b3-4c01-ad27-15bbdfd0145f" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet2306\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2350" + ], + "client-request-id": [ + "6416ccb8-b76d-48aa-8ebe-8b448b918a33" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "DC5B9BC35E6B28FC9295C8F27ECC2604" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7698.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FB4186C28\\\"\",\r\n \"name\": \"azsmnet2306\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2536" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9FB4186C28\"" + ], + "Location": [ + "https://azs-7698.search-dogfood.windows-int.net/indexes('azsmnet2306')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "6416ccb8-b76d-48aa-8ebe-8b448b918a33" + ], + "elapsed-time": [ + "778" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/datasources?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet1728\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "321" + ], + "client-request-id": [ + "b204cab1-547b-4f92-9b02-c40c3156a49e" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "DC5B9BC35E6B28FC9295C8F27ECC2604" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7698.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FB42AE738\\\"\",\r\n \"name\": \"azsmnet1728\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "527" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9FB42AE738\"" + ], + "Location": [ + "https://azs-7698.search-dogfood.windows-int.net/datasources('azsmnet1728')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "b204cab1-547b-4f92-9b02-c40c3156a49e" + ], + "elapsed-time": [ + "41" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1062" + ], + "client-request-id": [ + "7469955b-3f39-475a-a056-4fc8c2b16a05" + ], + "Prefer": [ + "return=representation" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "DC5B9BC35E6B28FC9295C8F27ECC2604" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7698.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FB54E9F7A\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ],\r\n \"categories\": [],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "894" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9FB54E9F7A\"" + ], + "Location": [ + "https://azs-7698.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "7469955b-3f39-475a-a056-4fc8c2b16a05" + ], + "elapsed-time": [ + "147" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/indexers('azsmnet6288')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjI4OCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"azsmnet6288\",\r\n \"dataSourceName\": \"azsmnet1728\",\r\n \"skillsetName\": \"testskillset\",\r\n \"targetIndexName\": \"azsmnet2306\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"outputFieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"/document/myEntities\",\r\n \"targetFieldName\": \"myEntities\"\r\n },\r\n {\r\n \"sourceFieldName\": \"/document/myText\",\r\n \"targetFieldName\": \"myText\"\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "416" + ], + "client-request-id": [ + "dfeb48a7-d87a-4c91-afff-f016abdbe423" + ], + "Prefer": [ + "return=representation" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "DC5B9BC35E6B28FC9295C8F27ECC2604" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7698.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FB66B031B\\\"\",\r\n \"name\": \"azsmnet6288\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet1728\",\r\n \"skillsetName\": \"testskillset\",\r\n \"targetIndexName\": \"azsmnet2306\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [],\r\n \"outputFieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"/document/myEntities\",\r\n \"targetFieldName\": \"myEntities\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"/document/myText\",\r\n \"targetFieldName\": \"myText\",\r\n \"mappingFunction\": null\r\n }\r\n ],\r\n \"disabled\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "594" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9FB66B031B\"" + ], + "Location": [ + "https://azs-7698.search-dogfood.windows-int.net/indexers('azsmnet6288')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "dfeb48a7-d87a-4c91-afff-f016abdbe423" + ], + "elapsed-time": [ + "1903" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4422/providers/Microsoft.Search/searchServices/azs-7698?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Njk4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31f490e9-a961-4fe3-b6f7-7f641ca09702" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:47:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "31f490e9-a961-4fe3-b6f7-7f641ca09702" + ], + "request-id": [ + "31f490e9-a961-4fe3-b6f7-7f641ca09702" + ], + "elapsed-time": [ + "1973" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "b01240b4-cf71-4c06-96ed-0c9f19f5594d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T174742Z:b01240b4-cf71-4c06-96ed-0c9f19f5594d" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet4422", + "azsmnet2306", + "azsmnet1728", + "azsmnet6288" + ], + "GenerateServiceName": [ + "azs-7698" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource.json index c50c3b8151ce..c0a1295fa90b 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e44af219-291a-4339-9c21-ee40865d2ddc" + "d84c9e7c-82a2-42ce-929f-faee3949638d" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:13 GMT" + "Thu, 19 Jul 2018 17:52:03 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1109" + "1144" ], "x-ms-request-id": [ - "d37711fa-cfbb-46e9-96f8-2b5dd58ce4fc" + "4fc913eb-6614-4211-a69e-4def0fd0c325" ], "x-ms-correlation-request-id": [ - "d37711fa-cfbb-46e9-96f8-2b5dd58ce4fc" + "4fc913eb-6614-4211-a69e-4def0fd0c325" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024813Z:d37711fa-cfbb-46e9-96f8-2b5dd58ce4fc" + "NORTHEUROPE:20180719T175203Z:4fc913eb-6614-4211-a69e-4def0fd0c325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4232?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MjMyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet762?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NjI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "8da2e604-afde-4842-929b-6be062c45195" + "7f57f2a9-7cd2-4819-ac2b-7fbbe207f477" ], "accept-language": [ "en-US" @@ -84,10 +84,10 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4232\",\r\n \"name\": \"azsmnet4232\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet762\",\r\n \"name\": \"azsmnet762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:14 GMT" + "Thu, 19 Jul 2018 17:52:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1108" + "1143" ], "x-ms-request-id": [ - "d289ff70-541f-4f09-996e-8f4e8c9bb15a" + "17717ada-e741-4b3d-899c-226d4078baaf" ], "x-ms-correlation-request-id": [ - "d289ff70-541f-4f09-996e-8f4e8c9bb15a" + "17717ada-e741-4b3d-899c-226d4078baaf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024814Z:d289ff70-541f-4f09-996e-8f4e8c9bb15a" + "NORTHEUROPE:20180719T175204Z:17717ada-e741-4b3d-899c-226d4078baaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4232/providers/Microsoft.Search/searchServices/azs-2657?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjU3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet762/providers/Microsoft.Search/searchServices/azs-1216?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTEyMTY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "ff5ea0e1-5fa9-4831-a54d-5472328de264" + "e025ce3b-9d6b-4cfd-a82f-6f75318e8321" ], "accept-language": [ "en-US" @@ -148,10 +148,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4232/providers/Microsoft.Search/searchServices/azs-2657\",\r\n \"name\": \"azs-2657\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet762/providers/Microsoft.Search/searchServices/azs-1216\",\r\n \"name\": \"azs-1216\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:17 GMT" + "Thu, 19 Jul 2018 17:52:08 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A48%3A17.8030821Z'\"" + "W/\"datetime'2018-07-19T17%3A52%3A08.6068008Z'\"" ], "x-ms-request-id": [ - "ff5ea0e1-5fa9-4831-a54d-5472328de264" + "e025ce3b-9d6b-4cfd-a82f-6f75318e8321" ], "request-id": [ - "ff5ea0e1-5fa9-4831-a54d-5472328de264" + "e025ce3b-9d6b-4cfd-a82f-6f75318e8321" ], "elapsed-time": [ - "1104" + "1177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1109" + "1142" ], "x-ms-correlation-request-id": [ - "c220b08c-bbcf-4e63-b573-2ab9543f67fe" + "b453a416-ccd0-40af-8c13-426d703a585f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024818Z:c220b08c-bbcf-4e63-b573-2ab9543f67fe" + "NORTHEUROPE:20180719T175209Z:b453a416-ccd0-40af-8c13-426d703a585f" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4232/providers/Microsoft.Search/searchServices/azs-2657/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjU3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet762/providers/Microsoft.Search/searchServices/azs-1216/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTEyMTYvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59d590e7-f96e-47df-848b-8ae061b11d58" + "e3084976-dc4c-4ad0-9ed6-794951d9fca7" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"64D804EDC64B331B29644E51F030640E\",\r\n \"secondaryKey\": \"433BAC13A45A31E1997F0B5291999F9B\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"541681E4DF241821D45F4AFCC5F8C747\",\r\n \"secondaryKey\": \"DB33902B85E145B56339DAF53F866D08\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:19 GMT" + "Thu, 19 Jul 2018 17:52:10 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "59d590e7-f96e-47df-848b-8ae061b11d58" + "e3084976-dc4c-4ad0-9ed6-794951d9fca7" ], "request-id": [ - "59d590e7-f96e-47df-848b-8ae061b11d58" + "e3084976-dc4c-4ad0-9ed6-794951d9fca7" ], "elapsed-time": [ - "162" + "236" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1108" + "1141" ], "x-ms-correlation-request-id": [ - "42105cbd-1502-4039-ba99-228dd35c7629" + "93684cd7-af93-4835-b0a0-9620fec08aa9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024820Z:42105cbd-1502-4039-ba99-228dd35c7629" + "NORTHEUROPE:20180719T175211Z:93684cd7-af93-4835-b0a0-9620fec08aa9" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4232/providers/Microsoft.Search/searchServices/azs-2657/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjU3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet762/providers/Microsoft.Search/searchServices/azs-1216/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTEyMTYvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9938ce1c-fd40-4fc7-8358-92d69bb1473f" + "f0800d96-65a5-4096-8ad9-b7052cfe297b" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2436137ADE4C0C3B20B9FE184A5D547A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2F3EB125B533283F02BCFB2A8B48FD4C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:20 GMT" + "Thu, 19 Jul 2018 17:52:10 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9938ce1c-fd40-4fc7-8358-92d69bb1473f" + "f0800d96-65a5-4096-8ad9-b7052cfe297b" ], "request-id": [ - "9938ce1c-fd40-4fc7-8358-92d69bb1473f" + "f0800d96-65a5-4096-8ad9-b7052cfe297b" ], "elapsed-time": [ - "142" + "177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14988" ], "x-ms-correlation-request-id": [ - "d61dab9a-8456-4a1c-909f-40b0b80de002" + "38978e65-ad2c-47e1-aab9-7ee3f03ccdb1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024820Z:d61dab9a-8456-4a1c-909f-40b0b80de002" + "NORTHEUROPE:20180719T175211Z:38978e65-ad2c-47e1-aab9-7ee3f03ccdb1" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7066\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3554\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "184b7fb4-5c1c-45b6-8295-377237c557cb" + "fd14abed-9266-477f-afb3-d06d6fd56273" ], "accept-language": [ "en-US" ], "api-key": [ - "64D804EDC64B331B29644E51F030640E" + "541681E4DF241821D45F4AFCC5F8C747" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2657.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9A9489340\\\"\",\r\n \"name\": \"azsmnet7066\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1216.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA05C459293\\\"\",\r\n \"name\": \"azsmnet3554\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:21 GMT" + "Thu, 19 Jul 2018 17:52:13 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9A9489340\"" + "W/\"0x8D5EDA05C459293\"" ], "Location": [ - "https://azs-2657.search-dogfood.windows-int.net/indexes('azsmnet7066')?api-version=2017-11-11-Preview" + "https://azs-1216.search-dogfood.windows-int.net/indexes('azsmnet3554')?api-version=2017-11-11-Preview" ], "request-id": [ - "184b7fb4-5c1c-45b6-8295-377237c557cb" + "fd14abed-9266-477f-afb3-d06d6fd56273" ], "elapsed-time": [ - "847" + "830" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6244\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3930\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "caef22f0-23bb-48be-a92c-7286cdee3ca5" + "b7337ee5-dd09-42f0-b4bf-0ef239e0fd33" ], "accept-language": [ "en-US" ], "api-key": [ - "64D804EDC64B331B29644E51F030640E" + "541681E4DF241821D45F4AFCC5F8C747" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2657.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9A9560417\\\"\",\r\n \"name\": \"azsmnet6244\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1216.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA05C5CF0D2\\\"\",\r\n \"name\": \"azsmnet3930\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:21 GMT" + "Thu, 19 Jul 2018 17:52:13 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9A9560417\"" + "W/\"0x8D5EDA05C5CF0D2\"" ], "Location": [ - "https://azs-2657.search-dogfood.windows-int.net/datasources('azsmnet6244')?api-version=2017-11-11-Preview" + "https://azs-1216.search-dogfood.windows-int.net/datasources('azsmnet3930')?api-version=2017-11-11-Preview" ], "request-id": [ - "caef22f0-23bb-48be-a92c-7286cdee3ca5" + "b7337ee5-dd09-42f0-b4bf-0ef239e0fd33" ], "elapsed-time": [ - "43" + "100" ], "OData-Version": [ "4.0" @@ -475,19 +475,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet553')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NTUzJyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestUri": "/indexers('azsmnet6004')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjAwNCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet553\",\r\n \"dataSourceName\": \"azsmnet6244\",\r\n \"targetIndexName\": \"azsmnet7066\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6004\",\r\n \"dataSourceName\": \"azsmnet3930\",\r\n \"targetIndexName\": \"azsmnet3554\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1126" + "1127" ], "client-request-id": [ - "a967c0bc-edd0-45bf-be9f-b2bebc53ea66" + "27301d7e-1664-46b8-b9e5-f7a970a7506a" ], "Prefer": [ "return=representation" @@ -496,17 +496,17 @@ "en-US" ], "api-key": [ - "64D804EDC64B331B29644E51F030640E" + "541681E4DF241821D45F4AFCC5F8C747" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2657.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9AA5FED2D\\\"\",\r\n \"name\": \"azsmnet553\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet6244\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7066\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1216.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA05D9A2AB5\\\"\",\r\n \"name\": \"azsmnet6004\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3930\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet3554\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1110" + "1111" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -518,22 +518,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:22 GMT" + "Thu, 19 Jul 2018 17:52:16 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9AA5FED2D\"" + "W/\"0x8D5EDA05D9A2AB5\"" ], "Location": [ - "https://azs-2657.search-dogfood.windows-int.net/indexers('azsmnet553')?api-version=2017-11-11-Preview" + "https://azs-1216.search-dogfood.windows-int.net/indexers('azsmnet6004')?api-version=2017-11-11-Preview" ], "request-id": [ - "a967c0bc-edd0-45bf-be9f-b2bebc53ea66" + "27301d7e-1664-46b8-b9e5-f7a970a7506a" ], "elapsed-time": [ - "754" + "1038" ], "OData-Version": [ "4.0" @@ -548,19 +548,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet553')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NTUzJyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestUri": "/indexers('azsmnet6004')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NjAwNCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet553\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet6244\",\r\n \"targetIndexName\": \"azsmnet7066\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"@odata.etag\": \"\\\"0x8D5B6E9AA5FED2D\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6004\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet3930\",\r\n \"targetIndexName\": \"azsmnet3554\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D5EDA05D9A2AB5\\\"\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1253" + "1284" ], "client-request-id": [ - "468db6cb-63d7-4d29-ad3f-11fb161f9025" + "ea366179-a7be-4a90-9454-9ab5244e37dd" ], "Prefer": [ "return=representation" @@ -572,7 +572,7 @@ "*" ], "api-key": [ - "64D804EDC64B331B29644E51F030640E" + "541681E4DF241821D45F4AFCC5F8C747" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -597,16 +597,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:22 GMT" + "Thu, 19 Jul 2018 17:52:16 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "468db6cb-63d7-4d29-ad3f-11fb161f9025" + "ea366179-a7be-4a90-9454-9ab5244e37dd" ], "elapsed-time": [ - "8" + "10" ], "OData-Version": [ "4.0" @@ -621,13 +621,13 @@ "StatusCode": 412 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4232/providers/Microsoft.Search/searchServices/azs-2657?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MjMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjU3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet762/providers/Microsoft.Search/searchServices/azs-1216?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTEyMTY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1825e910-790a-4f66-b7ef-60adfa6f085f" + "45e534a3-5025-4d86-9173-abc648319338" ], "accept-language": [ "en-US" @@ -649,31 +649,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:29 GMT" + "Thu, 19 Jul 2018 17:52:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1825e910-790a-4f66-b7ef-60adfa6f085f" + "45e534a3-5025-4d86-9173-abc648319338" ], "request-id": [ - "1825e910-790a-4f66-b7ef-60adfa6f085f" + "45e534a3-5025-4d86-9173-abc648319338" ], "elapsed-time": [ - "1256" + "1484" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14949" + "14977" ], "x-ms-correlation-request-id": [ - "710fb4db-1ddf-4507-b2df-cdafbd8021c5" + "16e78515-e554-47c0-afda-1320be423e76" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024830Z:710fb4db-1ddf-4507-b2df-cdafbd8021c5" + "NORTHEUROPE:20180719T175221Z:16e78515-e554-47c0-afda-1320be423e76" ], "X-Content-Type-Options": [ "nosniff" @@ -684,13 +684,13 @@ ], "Names": { "GenerateName": [ - "azsmnet4232", - "azsmnet7066", - "azsmnet6244", - "azsmnet553" + "azsmnet762", + "azsmnet3554", + "azsmnet3930", + "azsmnet6004" ], "GenerateServiceName": [ - "azs-2657" + "azs-1216" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json index 46857a599346..fa2efc53c7c9 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/CreateOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d014e26-9771-4b48-8473-d4f68c85f8fb" + "ea369764-ad8a-4cea-935b-994b25562a9b" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:26 GMT" + "Thu, 19 Jul 2018 17:50:05 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1121" + "1152" ], "x-ms-request-id": [ - "700927ae-6884-4dba-af4e-57c91330a5d1" + "c558a1c4-d4fb-437c-bb55-b433a7164310" ], "x-ms-correlation-request-id": [ - "700927ae-6884-4dba-af4e-57c91330a5d1" + "c558a1c4-d4fb-437c-bb55-b433a7164310" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024627Z:700927ae-6884-4dba-af4e-57c91330a5d1" + "NORTHEUROPE:20180719T175006Z:c558a1c4-d4fb-437c-bb55-b433a7164310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1498?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNDk4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8372?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MzcyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "161646fc-9725-4dfa-b3ad-6eac94c7526f" + "2cf6dccf-48ba-43e1-b594-c8a4120d06de" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1498\",\r\n \"name\": \"azsmnet1498\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8372\",\r\n \"name\": \"azsmnet8372\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:27 GMT" + "Thu, 19 Jul 2018 17:50:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1120" + "1151" ], "x-ms-request-id": [ - "b3bf6fc5-f93e-4d93-87ea-116676a55d87" + "1fa37a7a-b76e-4832-9c0e-a7fa4327a017" ], "x-ms-correlation-request-id": [ - "b3bf6fc5-f93e-4d93-87ea-116676a55d87" + "1fa37a7a-b76e-4832-9c0e-a7fa4327a017" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024628Z:b3bf6fc5-f93e-4d93-87ea-116676a55d87" + "NORTHEUROPE:20180719T175006Z:1fa37a7a-b76e-4832-9c0e-a7fa4327a017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1498/providers/Microsoft.Search/searchServices/azs-2226?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMjI2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8372/providers/Microsoft.Search/searchServices/azs-2724?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNzI0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "717125c6-edc3-46c3-9327-2cc0f9ea97d2" + "8c9622a1-e374-4e17-8cd6-a15db8bbf2a8" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1498/providers/Microsoft.Search/searchServices/azs-2226\",\r\n \"name\": \"azs-2226\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8372/providers/Microsoft.Search/searchServices/azs-2724\",\r\n \"name\": \"azs-2724\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:32 GMT" + "Thu, 19 Jul 2018 17:50:10 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A46%3A32.4671475Z'\"" + "W/\"datetime'2018-07-19T17%3A50%3A10.4947111Z'\"" ], "x-ms-request-id": [ - "717125c6-edc3-46c3-9327-2cc0f9ea97d2" + "8c9622a1-e374-4e17-8cd6-a15db8bbf2a8" ], "request-id": [ - "717125c6-edc3-46c3-9327-2cc0f9ea97d2" + "8c9622a1-e374-4e17-8cd6-a15db8bbf2a8" ], "elapsed-time": [ - "1088" + "1134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1106" + "1150" ], "x-ms-correlation-request-id": [ - "9fd05b79-acbe-485e-9e87-4a6f46df3b69" + "997248ad-b539-4dd1-9a85-3ec15d4cdd1d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024632Z:9fd05b79-acbe-485e-9e87-4a6f46df3b69" + "NORTHEUROPE:20180719T175011Z:997248ad-b539-4dd1-9a85-3ec15d4cdd1d" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1498/providers/Microsoft.Search/searchServices/azs-2226/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMjI2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8372/providers/Microsoft.Search/searchServices/azs-2724/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNzI0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb9bd666-34b0-44c8-a9c3-e9b9f7b48547" + "dc4ff083-2811-4d25-bb15-f6bd26d3ddb9" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"D26842A4D4923B953E60FAF89FC04C1A\",\r\n \"secondaryKey\": \"333FB55E6F330DE7CFA9402585B8D1C0\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"515BD0A1A6AA2463C27B29B4BBFD2109\",\r\n \"secondaryKey\": \"3BCFB50D767615BE2474FF8628085D4E\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:34 GMT" + "Thu, 19 Jul 2018 17:50:12 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fb9bd666-34b0-44c8-a9c3-e9b9f7b48547" + "dc4ff083-2811-4d25-bb15-f6bd26d3ddb9" ], "request-id": [ - "fb9bd666-34b0-44c8-a9c3-e9b9f7b48547" + "dc4ff083-2811-4d25-bb15-f6bd26d3ddb9" ], "elapsed-time": [ - "165" + "481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1105" + "1149" ], "x-ms-correlation-request-id": [ - "deb61026-3e30-42f0-80e0-2faadc006b9e" + "cbaed310-1c81-45d7-980d-13a8605f90c0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024634Z:deb61026-3e30-42f0-80e0-2faadc006b9e" + "NORTHEUROPE:20180719T175013Z:cbaed310-1c81-45d7-980d-13a8605f90c0" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1498/providers/Microsoft.Search/searchServices/azs-2226/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMjI2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8372/providers/Microsoft.Search/searchServices/azs-2724/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNzI0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae4bc505-db19-443b-b0bf-0fa7b35838e9" + "8ceeffda-5420-434f-9a60-aa911489ce96" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2780ED94AF8C32087704D8F732172C88\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"E4A98AF028D7635B26E1E2D28BB7932F\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:34 GMT" + "Thu, 19 Jul 2018 17:50:13 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ae4bc505-db19-443b-b0bf-0fa7b35838e9" + "8ceeffda-5420-434f-9a60-aa911489ce96" ], "request-id": [ - "ae4bc505-db19-443b-b0bf-0fa7b35838e9" + "8ceeffda-5420-434f-9a60-aa911489ce96" ], "elapsed-time": [ - "139" + "577" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14990" ], "x-ms-correlation-request-id": [ - "d312398c-3614-4740-a6be-b8e891e8eb5c" + "3e0f89b2-9a4e-49ab-b484-7be03280ebf3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024635Z:d312398c-3614-4740-a6be-b8e891e8eb5c" + "NORTHEUROPE:20180719T175014Z:3e0f89b2-9a4e-49ab-b484-7be03280ebf3" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6893\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5821\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "ffbb613f-f1f5-4901-a8f8-caaf7d1f1df5" + "a096c1b2-becf-4de7-b9fd-b6b61d8d3740" ], "accept-language": [ "en-US" ], "api-key": [ - "D26842A4D4923B953E60FAF89FC04C1A" + "515BD0A1A6AA2463C27B29B4BBFD2109" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2226.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E96A7B9AA0\\\"\",\r\n \"name\": \"azsmnet6893\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2724.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA01655BF9B\\\"\",\r\n \"name\": \"azsmnet5821\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:36 GMT" + "Thu, 19 Jul 2018 17:50:16 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E96A7B9AA0\"" + "W/\"0x8D5EDA01655BF9B\"" ], "Location": [ - "https://azs-2226.search-dogfood.windows-int.net/indexes('azsmnet6893')?api-version=2017-11-11-Preview" + "https://azs-2724.search-dogfood.windows-int.net/indexes('azsmnet5821')?api-version=2017-11-11-Preview" ], "request-id": [ - "ffbb613f-f1f5-4901-a8f8-caaf7d1f1df5" + "a096c1b2-becf-4de7-b9fd-b6b61d8d3740" ], "elapsed-time": [ - "1041" + "1422" ], "OData-Version": [ "4.0" @@ -408,32 +408,32 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5689\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "318" + "321" ], "client-request-id": [ - "c694cb48-33ee-4cd8-bdda-612549b1a85b" + "45fe14c6-e6a2-4ad6-bb96-8e2988e8a269" ], "accept-language": [ "en-US" ], "api-key": [ - "D26842A4D4923B953E60FAF89FC04C1A" + "515BD0A1A6AA2463C27B29B4BBFD2109" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2226.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E96A8CDCF4\\\"\",\r\n \"name\": \"azsmnet4\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2724.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0166B6FBA\\\"\",\r\n \"name\": \"azsmnet5689\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "524" + "527" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:36 GMT" + "Thu, 19 Jul 2018 17:50:16 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E96A8CDCF4\"" + "W/\"0x8D5EDA0166B6FBA\"" ], "Location": [ - "https://azs-2226.search-dogfood.windows-int.net/datasources('azsmnet4')?api-version=2017-11-11-Preview" + "https://azs-2724.search-dogfood.windows-int.net/datasources('azsmnet5689')?api-version=2017-11-11-Preview" ], "request-id": [ - "c694cb48-33ee-4cd8-bdda-612549b1a85b" + "45fe14c6-e6a2-4ad6-bb96-8e2988e8a269" ], "elapsed-time": [ - "37" + "274" ], "OData-Version": [ "4.0" @@ -475,19 +475,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet332')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MzMyJyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestUri": "/indexers('azsmnet7091')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzA5MScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet332\",\r\n \"dataSourceName\": \"azsmnet4\",\r\n \"targetIndexName\": \"azsmnet6893\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7091\",\r\n \"dataSourceName\": \"azsmnet5689\",\r\n \"targetIndexName\": \"azsmnet5821\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1123" + "1127" ], "client-request-id": [ - "9b0f0712-addb-4676-aaa1-00162db864e9" + "23f4deab-1d4d-4d61-bfbe-ebfe502ab7f4" ], "Prefer": [ "return=representation" @@ -499,17 +499,17 @@ "*" ], "api-key": [ - "D26842A4D4923B953E60FAF89FC04C1A" + "515BD0A1A6AA2463C27B29B4BBFD2109" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2226.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E96B569FC8\\\"\",\r\n \"name\": \"azsmnet332\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet4\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet6893\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2724.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA01751C211\\\"\",\r\n \"name\": \"azsmnet7091\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet5689\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5821\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1107" + "1111" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -521,22 +521,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:37 GMT" + "Thu, 19 Jul 2018 17:50:17 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E96B569FC8\"" + "W/\"0x8D5EDA01751C211\"" ], "Location": [ - "https://azs-2226.search-dogfood.windows-int.net/indexers('azsmnet332')?api-version=2017-11-11-Preview" + "https://azs-2724.search-dogfood.windows-int.net/indexers('azsmnet7091')?api-version=2017-11-11-Preview" ], "request-id": [ - "9b0f0712-addb-4676-aaa1-00162db864e9" + "23f4deab-1d4d-4d61-bfbe-ebfe502ab7f4" ], "elapsed-time": [ - "208" + "271" ], "OData-Version": [ "4.0" @@ -551,13 +551,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1498/providers/Microsoft.Search/searchServices/azs-2226?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMjI2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8372/providers/Microsoft.Search/searchServices/azs-2724?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNzI0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2245591-d376-4705-a997-245121dcd8eb" + "0dd8defe-32ec-48cc-b4a6-8c665ee55762" ], "accept-language": [ "en-US" @@ -579,31 +579,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:42 GMT" + "Thu, 19 Jul 2018 17:50:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a2245591-d376-4705-a997-245121dcd8eb" + "0dd8defe-32ec-48cc-b4a6-8c665ee55762" ], "request-id": [ - "a2245591-d376-4705-a997-245121dcd8eb" + "0dd8defe-32ec-48cc-b4a6-8c665ee55762" ], "elapsed-time": [ - "745" + "1072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14953" + "14974" ], "x-ms-correlation-request-id": [ - "1f7f9bd6-3125-4f44-a5c4-a62bae319644" + "e26608d3-d257-49ba-86d4-476864f25f16" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024643Z:1f7f9bd6-3125-4f44-a5c4-a62bae319644" + "NORTHEUROPE:20180719T175022Z:e26608d3-d257-49ba-86d4-476864f25f16" ], "X-Content-Type-Options": [ "nosniff" @@ -614,13 +614,13 @@ ], "Names": { "GenerateName": [ - "azsmnet1498", - "azsmnet6893", - "azsmnet4", - "azsmnet332" + "azsmnet8372", + "azsmnet5821", + "azsmnet5689", + "azsmnet7091" ], "GenerateServiceName": [ - "azs-2226" + "azs-2724" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfExistsWorksOnlyWhenResourceExists.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfExistsWorksOnlyWhenResourceExists.json index f0a7c6e56135..86d84c1c3617 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfExistsWorksOnlyWhenResourceExists.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfExistsWorksOnlyWhenResourceExists.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fb9746c-145d-4ce9-965e-cd33a42fb49f" + "428a8f74-4da8-4afe-b269-0f403d51f86e" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:48 GMT" + "Thu, 19 Jul 2018 17:50:27 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1104" + "1138" ], "x-ms-request-id": [ - "e0822246-744a-4d97-b946-c1837c7d36cb" + "55df8b7f-a5ab-499a-9363-19466761e01a" ], "x-ms-correlation-request-id": [ - "e0822246-744a-4d97-b946-c1837c7d36cb" + "55df8b7f-a5ab-499a-9363-19466761e01a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024649Z:e0822246-744a-4d97-b946-c1837c7d36cb" + "NORTHEUROPE:20180719T175028Z:55df8b7f-a5ab-499a-9363-19466761e01a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6032?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MDMyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4578?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NTc4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "305721eb-cf71-494b-912d-0cd257a482ac" + "a4c21906-dfbb-40ff-8889-cf5dcc7045ea" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6032\",\r\n \"name\": \"azsmnet6032\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4578\",\r\n \"name\": \"azsmnet4578\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:49 GMT" + "Thu, 19 Jul 2018 17:50:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1103" + "1137" ], "x-ms-request-id": [ - "ba0ef8a6-a562-4b00-8394-12f6140a5f0f" + "9fb7a536-ad5f-499b-90fc-0cd2f6de191d" ], "x-ms-correlation-request-id": [ - "ba0ef8a6-a562-4b00-8394-12f6140a5f0f" + "9fb7a536-ad5f-499b-90fc-0cd2f6de191d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024649Z:ba0ef8a6-a562-4b00-8394-12f6140a5f0f" + "NORTHEUROPE:20180719T175028Z:9fb7a536-ad5f-499b-90fc-0cd2f6de191d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6032/providers/Microsoft.Search/searchServices/azs-6256?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MjU2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4578/providers/Microsoft.Search/searchServices/azs-4237?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjM3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "c9d84e8f-87a0-4c4d-8ab0-598e06003f70" + "9f78c887-1db1-44a0-aea8-3912a22eef32" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6032/providers/Microsoft.Search/searchServices/azs-6256\",\r\n \"name\": \"azs-6256\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4578/providers/Microsoft.Search/searchServices/azs-4237\",\r\n \"name\": \"azs-4237\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:54 GMT" + "Thu, 19 Jul 2018 17:50:32 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A46%3A54.352124Z'\"" + "W/\"datetime'2018-07-19T17%3A50%3A32.7370087Z'\"" ], "x-ms-request-id": [ - "c9d84e8f-87a0-4c4d-8ab0-598e06003f70" + "9f78c887-1db1-44a0-aea8-3912a22eef32" ], "request-id": [ - "c9d84e8f-87a0-4c4d-8ab0-598e06003f70" + "9f78c887-1db1-44a0-aea8-3912a22eef32" ], "elapsed-time": [ - "1012" + "967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1119" + "1151" ], "x-ms-correlation-request-id": [ - "c7ddb9cd-aca4-468f-a66c-6d259fe2f4d2" + "1a144d29-899e-4c45-a140-fb271ab757ac" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024654Z:c7ddb9cd-aca4-468f-a66c-6d259fe2f4d2" + "NORTHEUROPE:20180719T175033Z:1a144d29-899e-4c45-a140-fb271ab757ac" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6032/providers/Microsoft.Search/searchServices/azs-6256/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MjU2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4578/providers/Microsoft.Search/searchServices/azs-4237/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjM3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e071491-dd8a-4486-b49b-0e6b285f9979" + "a8bcfcd2-6abc-4fca-b2ce-e474707c30b7" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"F27E7E44C4F0245B72EFA473ECB1B03D\",\r\n \"secondaryKey\": \"FA6D80C58E349F79511CF230A847A249\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"FB53AA11C422D7E6F7F8A2300A6DAB1C\",\r\n \"secondaryKey\": \"A3B9BB9C78C30D961F7F0E53D4FFDB15\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:56 GMT" + "Thu, 19 Jul 2018 17:50:34 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8e071491-dd8a-4486-b49b-0e6b285f9979" + "a8bcfcd2-6abc-4fca-b2ce-e474707c30b7" ], "request-id": [ - "8e071491-dd8a-4486-b49b-0e6b285f9979" + "a8bcfcd2-6abc-4fca-b2ce-e474707c30b7" ], "elapsed-time": [ - "233" + "283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1118" + "1150" ], "x-ms-correlation-request-id": [ - "3df58f59-0ff8-4a38-a8bb-03b2abbf08ee" + "9a042a00-998a-498a-93ae-79d9157e06ff" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024656Z:3df58f59-0ff8-4a38-a8bb-03b2abbf08ee" + "NORTHEUROPE:20180719T175035Z:9a042a00-998a-498a-93ae-79d9157e06ff" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6032/providers/Microsoft.Search/searchServices/azs-6256/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MjU2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4578/providers/Microsoft.Search/searchServices/azs-4237/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjM3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16b769db-c709-4a29-be47-7cbec58d600f" + "facc0b2a-3506-48f5-9c31-0b019d20b31a" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"402775D7B043968DF2F5B87157C167FE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2D099011F75175CF91038DE852CE60AC\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:56 GMT" + "Thu, 19 Jul 2018 17:50:35 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "16b769db-c709-4a29-be47-7cbec58d600f" + "facc0b2a-3506-48f5-9c31-0b019d20b31a" ], "request-id": [ - "16b769db-c709-4a29-be47-7cbec58d600f" + "facc0b2a-3506-48f5-9c31-0b019d20b31a" ], "elapsed-time": [ - "179" + "255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14985" ], "x-ms-correlation-request-id": [ - "f0d6f6d3-2a3e-4d8a-820d-ac08503f1c7a" + "4ad9b032-7f4d-48fc-a86a-324495affb83" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024657Z:f0d6f6d3-2a3e-4d8a-820d-ac08503f1c7a" + "NORTHEUROPE:20180719T175035Z:4ad9b032-7f4d-48fc-a86a-324495affb83" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7089\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7685\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "fd43f1e5-bee1-4c91-b021-8112e0220f80" + "a4ba1cfc-bf48-49d7-baf1-3cd3bb932fa9" ], "accept-language": [ "en-US" ], "api-key": [ - "F27E7E44C4F0245B72EFA473ECB1B03D" + "FB53AA11C422D7E6F7F8A2300A6DAB1C" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6256.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E977A253A8\\\"\",\r\n \"name\": \"azsmnet7089\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4237.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA022E4EE65\\\"\",\r\n \"name\": \"azsmnet7685\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:59 GMT" + "Thu, 19 Jul 2018 17:50:37 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E977A253A8\"" + "W/\"0x8D5EDA022E4EE65\"" ], "Location": [ - "https://azs-6256.search-dogfood.windows-int.net/indexes('azsmnet7089')?api-version=2017-11-11-Preview" + "https://azs-4237.search-dogfood.windows-int.net/indexes('azsmnet7685')?api-version=2017-11-11-Preview" ], "request-id": [ - "fd43f1e5-bee1-4c91-b021-8112e0220f80" + "a4ba1cfc-bf48-49d7-baf1-3cd3bb932fa9" ], "elapsed-time": [ - "831" + "880" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1684\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8744\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "6bb79175-eeea-48b8-ad76-25a68d69b7d1" + "0dc96a8e-0ee6-4615-8115-ee4ae1ef831e" ], "accept-language": [ "en-US" ], "api-key": [ - "F27E7E44C4F0245B72EFA473ECB1B03D" + "FB53AA11C422D7E6F7F8A2300A6DAB1C" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6256.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E977AF2814\\\"\",\r\n \"name\": \"azsmnet1684\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4237.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA022FBB039\\\"\",\r\n \"name\": \"azsmnet8744\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:59 GMT" + "Thu, 19 Jul 2018 17:50:37 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E977AF2814\"" + "W/\"0x8D5EDA022FBB039\"" ], "Location": [ - "https://azs-6256.search-dogfood.windows-int.net/datasources('azsmnet1684')?api-version=2017-11-11-Preview" + "https://azs-4237.search-dogfood.windows-int.net/datasources('azsmnet8744')?api-version=2017-11-11-Preview" ], "request-id": [ - "6bb79175-eeea-48b8-ad76-25a68d69b7d1" + "0dc96a8e-0ee6-4615-8115-ee4ae1ef831e" ], "elapsed-time": [ - "40" + "56" ], "OData-Version": [ "4.0" @@ -475,10 +475,10 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8888')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODg4OCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet4549')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDU0OScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8888\",\r\n \"dataSourceName\": \"azsmnet1684\",\r\n \"targetIndexName\": \"azsmnet7089\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4549\",\r\n \"dataSourceName\": \"azsmnet8744\",\r\n \"targetIndexName\": \"azsmnet7685\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -487,7 +487,7 @@ "1127" ], "client-request-id": [ - "9de56e21-342b-431e-a0fd-0690d21008d1" + "b0393291-a6e0-4157-ae0a-b039646e0bbf" ], "Prefer": [ "return=representation" @@ -496,14 +496,14 @@ "en-US" ], "api-key": [ - "F27E7E44C4F0245B72EFA473ECB1B03D" + "FB53AA11C422D7E6F7F8A2300A6DAB1C" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6256.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E97879395D\\\"\",\r\n \"name\": \"azsmnet8888\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet1684\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7089\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4237.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA023CAF296\\\"\",\r\n \"name\": \"azsmnet4549\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8744\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7685\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1111" @@ -518,22 +518,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:59 GMT" + "Thu, 19 Jul 2018 17:50:39 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E97879395D\"" + "W/\"0x8D5EDA023CAF296\"" ], "Location": [ - "https://azs-6256.search-dogfood.windows-int.net/indexers('azsmnet8888')?api-version=2017-11-11-Preview" + "https://azs-4237.search-dogfood.windows-int.net/indexers('azsmnet4549')?api-version=2017-11-11-Preview" ], "request-id": [ - "9de56e21-342b-431e-a0fd-0690d21008d1" + "b0393291-a6e0-4157-ae0a-b039646e0bbf" ], "elapsed-time": [ - "250" + "317" ], "OData-Version": [ "4.0" @@ -548,13 +548,13 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8888')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODg4OCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet4549')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDU0OScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "9e34b5cf-ab95-4e1f-8819-ae51574f8ec6" + "03b84d44-0756-44d9-a2ac-75b7f4b8a614" ], "accept-language": [ "en-US" @@ -563,7 +563,7 @@ "*" ], "api-key": [ - "F27E7E44C4F0245B72EFA473ECB1B03D" + "FB53AA11C422D7E6F7F8A2300A6DAB1C" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -579,16 +579,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:59 GMT" + "Thu, 19 Jul 2018 17:50:39 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "9e34b5cf-ab95-4e1f-8819-ae51574f8ec6" + "03b84d44-0756-44d9-a2ac-75b7f4b8a614" ], "elapsed-time": [ - "97" + "52" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" @@ -597,13 +597,13 @@ "StatusCode": 204 }, { - "RequestUri": "/indexers('azsmnet8888')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODg4OCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet4549')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDU0OScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "62a5dc43-7932-4884-a8ae-13bfb21576af" + "4c45b12d-436d-40cd-aeb3-f040bce01ef8" ], "accept-language": [ "en-US" @@ -612,7 +612,7 @@ "*" ], "api-key": [ - "F27E7E44C4F0245B72EFA473ECB1B03D" + "FB53AA11C422D7E6F7F8A2300A6DAB1C" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -637,16 +637,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:46:59 GMT" + "Thu, 19 Jul 2018 17:50:39 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "62a5dc43-7932-4884-a8ae-13bfb21576af" + "4c45b12d-436d-40cd-aeb3-f040bce01ef8" ], "elapsed-time": [ - "6" + "8" ], "OData-Version": [ "4.0" @@ -661,13 +661,13 @@ "StatusCode": 412 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6032/providers/Microsoft.Search/searchServices/azs-6256?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MjU2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4578/providers/Microsoft.Search/searchServices/azs-4237?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjM3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7df20d0-34fa-4af8-9eb1-60fe888f67b4" + "8714e41c-6783-4a3f-897f-5f0be8d13835" ], "accept-language": [ "en-US" @@ -689,31 +689,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:03 GMT" + "Thu, 19 Jul 2018 17:50:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f7df20d0-34fa-4af8-9eb1-60fe888f67b4" + "8714e41c-6783-4a3f-897f-5f0be8d13835" ], "request-id": [ - "f7df20d0-34fa-4af8-9eb1-60fe888f67b4" + "8714e41c-6783-4a3f-897f-5f0be8d13835" ], "elapsed-time": [ - "914" + "964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14952" + "14973" ], "x-ms-correlation-request-id": [ - "e7fcf7da-52ba-4282-b0cf-f6adcb9e080b" + "bea9a255-4f59-4485-9e16-a7496e23698a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024704Z:e7fcf7da-52ba-4282-b0cf-f6adcb9e080b" + "NORTHEUROPE:20180719T175043Z:bea9a255-4f59-4485-9e16-a7496e23698a" ], "X-Content-Type-Options": [ "nosniff" @@ -724,13 +724,13 @@ ], "Names": { "GenerateName": [ - "azsmnet6032", - "azsmnet7089", - "azsmnet1684", - "azsmnet8888" + "azsmnet4578", + "azsmnet7685", + "azsmnet8744", + "azsmnet4549" ], "GenerateServiceName": [ - "azs-6256" + "azs-4237" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json index 8fca7c486acb..6a6c176b479a 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee4d5258-0fa3-438c-ab4f-c53d118c6cbc" + "09d7a00b-af37-4440-ab46-51cb4dbdba8f" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:48 GMT" + "Thu, 19 Jul 2018 17:46:54 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1093" + "1158" ], "x-ms-request-id": [ - "a4492a8d-ded7-4ff3-ad0e-2965cc4bd813" + "03e55a94-af6e-4c65-94ad-8532ceafe652" ], "x-ms-correlation-request-id": [ - "a4492a8d-ded7-4ff3-ad0e-2965cc4bd813" + "03e55a94-af6e-4c65-94ad-8532ceafe652" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024349Z:a4492a8d-ded7-4ff3-ad0e-2965cc4bd813" + "NORTHEUROPE:20180719T174655Z:03e55a94-af6e-4c65-94ad-8532ceafe652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7738?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NzM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet740?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NDA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "81efe232-ecf3-4522-a6b2-12ae5c2268d5" + "2c6465cd-49ca-42d5-8679-3c42240e6588" ], "accept-language": [ "en-US" @@ -84,10 +84,10 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7738\",\r\n \"name\": \"azsmnet7738\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet740\",\r\n \"name\": \"azsmnet740\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:49 GMT" + "Thu, 19 Jul 2018 17:46:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1092" + "1157" ], "x-ms-request-id": [ - "45992ee8-8a5e-4ae2-955b-2cbf7a38d9fa" + "d2af592f-6423-4f54-985f-0ec251a6545c" ], "x-ms-correlation-request-id": [ - "45992ee8-8a5e-4ae2-955b-2cbf7a38d9fa" + "d2af592f-6423-4f54-985f-0ec251a6545c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024350Z:45992ee8-8a5e-4ae2-955b-2cbf7a38d9fa" + "NORTHEUROPE:20180719T174656Z:d2af592f-6423-4f54-985f-0ec251a6545c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7738/providers/Microsoft.Search/searchServices/azs-2549?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNTQ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet740/providers/Microsoft.Search/searchServices/azs-3331?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMzMzE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "a05aa8cc-103c-443b-acba-9eb2de2b6e94" + "d74597a6-f3ec-43c7-b315-6a96d4bdaada" ], "accept-language": [ "en-US" @@ -148,10 +148,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7738/providers/Microsoft.Search/searchServices/azs-2549\",\r\n \"name\": \"azs-2549\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet740/providers/Microsoft.Search/searchServices/azs-3331\",\r\n \"name\": \"azs-3331\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:55 GMT" + "Thu, 19 Jul 2018 17:47:01 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A43%3A54.7129574Z'\"" + "W/\"datetime'2018-07-19T17%3A47%3A01.233547Z'\"" ], "x-ms-request-id": [ - "a05aa8cc-103c-443b-acba-9eb2de2b6e94" + "d74597a6-f3ec-43c7-b315-6a96d4bdaada" ], "request-id": [ - "a05aa8cc-103c-443b-acba-9eb2de2b6e94" + "d74597a6-f3ec-43c7-b315-6a96d4bdaada" ], "elapsed-time": [ - "1445" + "1338" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1108" + "1159" ], "x-ms-correlation-request-id": [ - "ec3cc3d1-528c-4d69-b1f8-e173734c29a7" + "3235bfec-14fb-44ae-b6db-96e8bab9e354" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024355Z:ec3cc3d1-528c-4d69-b1f8-e173734c29a7" + "NORTHEUROPE:20180719T174702Z:3235bfec-14fb-44ae-b6db-96e8bab9e354" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7738/providers/Microsoft.Search/searchServices/azs-2549/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNTQ5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet740/providers/Microsoft.Search/searchServices/azs-3331/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMzMzEvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e756ce2-85bb-4f0d-9237-58024150cad2" + "cb28ac55-754f-489c-a351-6328214e11cb" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"7C4F4C6FE59FE22EA53567BD60046EB8\",\r\n \"secondaryKey\": \"F99C4509E9D614C704105E6B52ECB254\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"9A5B6E1B144714F2091D6FD181E11986\",\r\n \"secondaryKey\": \"6AD647D859B2FA1B200065D6EB120594\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:58 GMT" + "Thu, 19 Jul 2018 17:47:03 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7e756ce2-85bb-4f0d-9237-58024150cad2" + "cb28ac55-754f-489c-a351-6328214e11cb" ], "request-id": [ - "7e756ce2-85bb-4f0d-9237-58024150cad2" + "cb28ac55-754f-489c-a351-6328214e11cb" ], "elapsed-time": [ - "2776" + "275" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1107" + "1158" ], "x-ms-correlation-request-id": [ - "0e4ae748-f2de-4be0-9062-5dceed93b356" + "18e75d18-ca99-4315-97bf-0a003c07ed50" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024359Z:0e4ae748-f2de-4be0-9062-5dceed93b356" + "NORTHEUROPE:20180719T174704Z:18e75d18-ca99-4315-97bf-0a003c07ed50" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7738/providers/Microsoft.Search/searchServices/azs-2549/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNTQ5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet740/providers/Microsoft.Search/searchServices/azs-3331/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMzMzEvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "565453b5-d6d7-4807-a2e3-62a4700fb18a" + "85d52c1f-850d-4b17-9b88-47b7fef289c3" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B9BEA4211BE498AFCC11779CDB267DCE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C110334EE6F32007DCCAB6AE2CEDE13F\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:00 GMT" + "Thu, 19 Jul 2018 17:47:04 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "565453b5-d6d7-4807-a2e3-62a4700fb18a" + "85d52c1f-850d-4b17-9b88-47b7fef289c3" ], "request-id": [ - "565453b5-d6d7-4807-a2e3-62a4700fb18a" + "85d52c1f-850d-4b17-9b88-47b7fef289c3" ], "elapsed-time": [ - "1620" + "216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14992" ], "x-ms-correlation-request-id": [ - "ca377832-4da3-4e28-a2a7-f90f342ff319" + "c048bbb6-bb7f-4b38-878a-f41ce085fc96" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024401Z:ca377832-4da3-4e28-a2a7-f90f342ff319" + "NORTHEUROPE:20180719T174705Z:c048bbb6-bb7f-4b38-878a-f41ce085fc96" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1913\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5244\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "5a06adbd-dfc2-472d-9f56-c202737b8949" + "1a31d318-ed65-4f39-ba5b-d441ff830066" ], "accept-language": [ "en-US" ], "api-key": [ - "7C4F4C6FE59FE22EA53567BD60046EB8" + "9A5B6E1B144714F2091D6FD181E11986" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2549.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E90F34C625\\\"\",\r\n \"name\": \"azsmnet1913\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3331.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FA53AC5FF\\\"\",\r\n \"name\": \"azsmnet5244\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:02 GMT" + "Thu, 19 Jul 2018 17:47:07 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E90F34C625\"" + "W/\"0x8D5ED9FA53AC5FF\"" ], "Location": [ - "https://azs-2549.search-dogfood.windows-int.net/indexes('azsmnet1913')?api-version=2017-11-11-Preview" + "https://azs-3331.search-dogfood.windows-int.net/indexes('azsmnet5244')?api-version=2017-11-11-Preview" ], "request-id": [ - "5a06adbd-dfc2-472d-9f56-c202737b8949" + "1a31d318-ed65-4f39-ba5b-d441ff830066" ], "elapsed-time": [ - "1416" + "854" ], "OData-Version": [ "4.0" @@ -408,32 +408,32 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3350\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet458\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "321" + "320" ], "client-request-id": [ - "6ba0df2f-9afd-4145-97bb-7f16f0e0620f" + "73188e02-06f7-46a5-aa44-7e440e6e2aff" ], "accept-language": [ "en-US" ], "api-key": [ - "7C4F4C6FE59FE22EA53567BD60046EB8" + "9A5B6E1B144714F2091D6FD181E11986" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2549.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E90F44333C\\\"\",\r\n \"name\": \"azsmnet3350\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3331.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FA54F8B82\\\"\",\r\n \"name\": \"azsmnet458\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "527" + "526" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:02 GMT" + "Thu, 19 Jul 2018 17:47:07 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E90F44333C\"" + "W/\"0x8D5ED9FA54F8B82\"" ], "Location": [ - "https://azs-2549.search-dogfood.windows-int.net/datasources('azsmnet3350')?api-version=2017-11-11-Preview" + "https://azs-3331.search-dogfood.windows-int.net/datasources('azsmnet458')?api-version=2017-11-11-Preview" ], "request-id": [ - "6ba0df2f-9afd-4145-97bb-7f16f0e0620f" + "73188e02-06f7-46a5-aa44-7e440e6e2aff" ], "elapsed-time": [ - "49" + "54" ], "OData-Version": [ "4.0" @@ -475,19 +475,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8253')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODI1MycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet8738')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODczOCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8253\",\r\n \"dataSourceName\": \"azsmnet3350\",\r\n \"targetIndexName\": \"azsmnet1913\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8738\",\r\n \"dataSourceName\": \"azsmnet458\",\r\n \"targetIndexName\": \"azsmnet5244\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1127" + "1126" ], "client-request-id": [ - "1fd5c9dd-c138-447b-961a-8fa037fe13d5" + "18578b9a-6374-4caa-84f4-6027a39cd796" ], "Prefer": [ "return=representation" @@ -496,17 +496,17 @@ "en-US" ], "api-key": [ - "7C4F4C6FE59FE22EA53567BD60046EB8" + "9A5B6E1B144714F2091D6FD181E11986" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2549.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E911537052\\\"\",\r\n \"name\": \"azsmnet8253\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3350\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1913\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3331.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FA709B50B\\\"\",\r\n \"name\": \"azsmnet8738\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet458\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5244\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1111" + "1110" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -518,22 +518,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:06 GMT" + "Thu, 19 Jul 2018 17:47:10 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E911537052\"" + "W/\"0x8D5ED9FA709B50B\"" ], "Location": [ - "https://azs-2549.search-dogfood.windows-int.net/indexers('azsmnet8253')?api-version=2017-11-11-Preview" + "https://azs-3331.search-dogfood.windows-int.net/indexers('azsmnet8738')?api-version=2017-11-11-Preview" ], "request-id": [ - "1fd5c9dd-c138-447b-961a-8fa037fe13d5" + "18578b9a-6374-4caa-84f4-6027a39cd796" ], "elapsed-time": [ - "2630" + "1874" ], "OData-Version": [ "4.0" @@ -548,19 +548,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8253')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODI1MycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet8738')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODczOCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8253\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet3350\",\r\n \"targetIndexName\": \"azsmnet1913\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"@odata.etag\": \"\\\"0x8D5B6E911537052\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8738\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet458\",\r\n \"targetIndexName\": \"azsmnet5244\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D5ED9FA709B50B\\\"\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1254" + "1283" ], "client-request-id": [ - "952fb8f7-8abc-4d14-a897-224cf6ed3b20" + "77d65b4b-d4a9-4e0a-ac7c-eee180e2df04" ], "Prefer": [ "return=representation" @@ -569,14 +569,14 @@ "en-US" ], "api-key": [ - "7C4F4C6FE59FE22EA53567BD60046EB8" + "9A5B6E1B144714F2091D6FD181E11986" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2549.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E911E6D3B6\\\"\",\r\n \"name\": \"azsmnet8253\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet3350\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1913\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3331.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FA79CA2E9\\\"\",\r\n \"name\": \"azsmnet8738\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet458\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5244\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -588,22 +588,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:07 GMT" + "Thu, 19 Jul 2018 17:47:10 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E911E6D3B6\"" + "W/\"0x8D5ED9FA79CA2E9\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "952fb8f7-8abc-4d14-a897-224cf6ed3b20" + "77d65b4b-d4a9-4e0a-ac7c-eee180e2df04" ], "elapsed-time": [ - "676" + "817" ], "OData-Version": [ "4.0" @@ -618,22 +618,22 @@ "StatusCode": 200 }, { - "RequestUri": "/indexers('azsmnet8253')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODI1MycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet8738')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODczOCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "38e9e84b-3ef7-4a12-b17c-23099a8cc2b3" + "85bb91e7-3cc8-49c9-b94f-ffdef9c73d28" ], "accept-language": [ "en-US" ], "If-Match": [ - "\"0x8D5B6E911537052\"" + "\"0x8D5ED9FA709B50B\"" ], "api-key": [ - "7C4F4C6FE59FE22EA53567BD60046EB8" + "9A5B6E1B144714F2091D6FD181E11986" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -658,16 +658,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:07 GMT" + "Thu, 19 Jul 2018 17:47:10 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "38e9e84b-3ef7-4a12-b17c-23099a8cc2b3" + "85bb91e7-3cc8-49c9-b94f-ffdef9c73d28" ], "elapsed-time": [ - "16" + "10" ], "OData-Version": [ "4.0" @@ -682,22 +682,22 @@ "StatusCode": 412 }, { - "RequestUri": "/indexers('azsmnet8253')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODI1MycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet8738')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODczOCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "c7fb19ed-3c55-4449-9937-c5293e4380f9" + "78911a68-9ec7-4e66-92f7-73cc9fed56d0" ], "accept-language": [ "en-US" ], "If-Match": [ - "\"0x8D5B6E911E6D3B6\"" + "\"0x8D5ED9FA79CA2E9\"" ], "api-key": [ - "7C4F4C6FE59FE22EA53567BD60046EB8" + "9A5B6E1B144714F2091D6FD181E11986" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -713,16 +713,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:07 GMT" + "Thu, 19 Jul 2018 17:47:11 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "c7fb19ed-3c55-4449-9937-c5293e4380f9" + "78911a68-9ec7-4e66-92f7-73cc9fed56d0" ], "elapsed-time": [ - "69" + "54" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" @@ -731,13 +731,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7738/providers/Microsoft.Search/searchServices/azs-2549?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNTQ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet740/providers/Microsoft.Search/searchServices/azs-3331?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMzMzE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fb751bf-4ceb-4f3c-b27f-720cef9f2fde" + "cd03b3f3-33ff-4952-8d37-d2ebc414eeb0" ], "accept-language": [ "en-US" @@ -759,31 +759,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:12 GMT" + "Thu, 19 Jul 2018 17:47:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9fb751bf-4ceb-4f3c-b27f-720cef9f2fde" + "cd03b3f3-33ff-4952-8d37-d2ebc414eeb0" ], "request-id": [ - "9fb751bf-4ceb-4f3c-b27f-720cef9f2fde" + "cd03b3f3-33ff-4952-8d37-d2ebc414eeb0" ], "elapsed-time": [ - "925" + "804" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14948" + "14970" ], "x-ms-correlation-request-id": [ - "75826853-3367-4301-bbac-4f66b7b8c24f" + "c45b97ff-622b-4508-a36f-dbe0b7a46b1d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024413Z:75826853-3367-4301-bbac-4f66b7b8c24f" + "NORTHEUROPE:20180719T174715Z:c45b97ff-622b-4508-a36f-dbe0b7a46b1d" ], "X-Content-Type-Options": [ "nosniff" @@ -794,13 +794,13 @@ ], "Names": { "GenerateName": [ - "azsmnet7738", - "azsmnet1913", - "azsmnet3350", - "azsmnet8253" + "azsmnet740", + "azsmnet5244", + "azsmnet458", + "azsmnet8738" ], "GenerateServiceName": [ - "azs-2549" + "azs-3331" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIsIdempotent.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIsIdempotent.json index 6af653cd5990..b60bd8b66d27 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIsIdempotent.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/DeleteIndexerIsIdempotent.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e079666a-6ff7-45e9-9aca-a76ddb3445e2" + "f505c9e0-a457-408e-ae3f-148277e139dd" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:43 GMT" + "Thu, 19 Jul 2018 17:49:23 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1115" + "1140" ], "x-ms-request-id": [ - "88b9b185-5d0b-4964-9e61-70b52d3b6371" + "b8e62935-8f98-4a1e-9be1-e17d4b781152" ], "x-ms-correlation-request-id": [ - "88b9b185-5d0b-4964-9e61-70b52d3b6371" + "b8e62935-8f98-4a1e-9be1-e17d4b781152" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024543Z:88b9b185-5d0b-4964-9e61-70b52d3b6371" + "NORTHEUROPE:20180719T174923Z:b8e62935-8f98-4a1e-9be1-e17d4b781152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4809?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODA5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7744?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NzQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "cd33b365-8bbb-4ed4-9f68-a2b00db2ea11" + "55551ad5-d9f0-4ac0-9f9e-9846f1041c1d" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4809\",\r\n \"name\": \"azsmnet4809\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7744\",\r\n \"name\": \"azsmnet7744\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:44 GMT" + "Thu, 19 Jul 2018 17:49:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1114" + "1139" ], "x-ms-request-id": [ - "dde06b4d-276c-4db3-9ed2-21e25494d092" + "e884e44e-c36e-427b-a838-9b099b6b0cfe" ], "x-ms-correlation-request-id": [ - "dde06b4d-276c-4db3-9ed2-21e25494d092" + "e884e44e-c36e-427b-a838-9b099b6b0cfe" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024544Z:dde06b4d-276c-4db3-9ed2-21e25494d092" + "NORTHEUROPE:20180719T174924Z:e884e44e-c36e-427b-a838-9b099b6b0cfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4809/providers/Microsoft.Search/searchServices/azs-7300?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7744/providers/Microsoft.Search/searchServices/azs-4738?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NzM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "6c500a25-93c3-4caa-914e-72b6413daf41" + "7a71ee8c-6a65-45fd-95cc-0c24c09a83e1" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4809/providers/Microsoft.Search/searchServices/azs-7300\",\r\n \"name\": \"azs-7300\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7744/providers/Microsoft.Search/searchServices/azs-4738\",\r\n \"name\": \"azs-4738\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:48 GMT" + "Thu, 19 Jul 2018 17:49:28 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A45%3A47.6181655Z'\"" + "W/\"datetime'2018-07-19T17%3A49%3A28.765755Z'\"" ], "x-ms-request-id": [ - "6c500a25-93c3-4caa-914e-72b6413daf41" + "7a71ee8c-6a65-45fd-95cc-0c24c09a83e1" ], "request-id": [ - "6c500a25-93c3-4caa-914e-72b6413daf41" + "7a71ee8c-6a65-45fd-95cc-0c24c09a83e1" ], "elapsed-time": [ - "1040" + "1164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1123" + "1152" ], "x-ms-correlation-request-id": [ - "b5ce1617-a353-4d6f-8971-d62388ec2c9f" + "8fe99590-a3d7-4bde-954f-d51afb1322dd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024548Z:b5ce1617-a353-4d6f-8971-d62388ec2c9f" + "NORTHEUROPE:20180719T174929Z:8fe99590-a3d7-4bde-954f-d51afb1322dd" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4809/providers/Microsoft.Search/searchServices/azs-7300/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzAwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7744/providers/Microsoft.Search/searchServices/azs-4738/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NzM4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1aa4fe34-4ef5-4445-9934-420cefe3d100" + "3dd06168-c234-48f9-b22a-7fd362b4c645" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"1E3D86C5AA260CD4540BF952AFA756A6\",\r\n \"secondaryKey\": \"2A469E87C8CA4AE2EFC2AF0EA8BAB334\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"DF7C527640E1E653821B83E2ADC0E16D\",\r\n \"secondaryKey\": \"1619A116C8A5C96BED0A588D7D3BF88F\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:50 GMT" + "Thu, 19 Jul 2018 17:49:30 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1aa4fe34-4ef5-4445-9934-420cefe3d100" + "3dd06168-c234-48f9-b22a-7fd362b4c645" ], "request-id": [ - "1aa4fe34-4ef5-4445-9934-420cefe3d100" + "3dd06168-c234-48f9-b22a-7fd362b4c645" ], "elapsed-time": [ - "149" + "244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1122" + "1151" ], "x-ms-correlation-request-id": [ - "ca408aad-21f3-4984-bc85-47f856072ee2" + "2f0f05c3-9f72-4c35-8325-738a6220528d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024550Z:ca408aad-21f3-4984-bc85-47f856072ee2" + "NORTHEUROPE:20180719T174931Z:2f0f05c3-9f72-4c35-8325-738a6220528d" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4809/providers/Microsoft.Search/searchServices/azs-7300/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzAwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7744/providers/Microsoft.Search/searchServices/azs-4738/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NzM4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6bb362c-6e9a-4b3b-b8c3-3e70de63c2b8" + "65faaaba-b810-4528-8aa9-8e78a9ff25be" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B30F69B5969EA62718AB8FA99B77F36E\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"5602289B64E8803663ACC92303046054\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:50 GMT" + "Thu, 19 Jul 2018 17:49:30 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a6bb362c-6e9a-4b3b-b8c3-3e70de63c2b8" + "65faaaba-b810-4528-8aa9-8e78a9ff25be" ], "request-id": [ - "a6bb362c-6e9a-4b3b-b8c3-3e70de63c2b8" + "65faaaba-b810-4528-8aa9-8e78a9ff25be" ], "elapsed-time": [ - "106" + "249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14985" ], "x-ms-correlation-request-id": [ - "b84e1319-faf9-49fb-812d-34fbd0af0ca7" + "6033bf12-451e-440d-91cc-b8440c45c346" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024551Z:b84e1319-faf9-49fb-812d-34fbd0af0ca7" + "NORTHEUROPE:20180719T174931Z:6033bf12-451e-440d-91cc-b8440c45c346" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5670\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6375\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "502b6956-4988-41b2-8397-9e12478dfcad" + "0519e96f-ad3e-4f3c-9931-ac59cd49aa1b" ], "accept-language": [ "en-US" ], "api-key": [ - "1E3D86C5AA260CD4540BF952AFA756A6" + "DF7C527640E1E653821B83E2ADC0E16D" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7300.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9509D58E7\\\"\",\r\n \"name\": \"azsmnet5670\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4738.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FFCBE43E9\\\"\",\r\n \"name\": \"azsmnet6375\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:52 GMT" + "Thu, 19 Jul 2018 17:49:33 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9509D58E7\"" + "W/\"0x8D5ED9FFCBE43E9\"" ], "Location": [ - "https://azs-7300.search-dogfood.windows-int.net/indexes('azsmnet5670')?api-version=2017-11-11-Preview" + "https://azs-4738.search-dogfood.windows-int.net/indexes('azsmnet6375')?api-version=2017-11-11-Preview" ], "request-id": [ - "502b6956-4988-41b2-8397-9e12478dfcad" + "0519e96f-ad3e-4f3c-9931-ac59cd49aa1b" ], "elapsed-time": [ - "1618" + "899" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3784\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6032\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "10a1460b-42fd-476e-8d57-b4347558e718" + "925b111b-a74c-47c8-88ad-b3bd12218ec9" ], "accept-language": [ "en-US" ], "api-key": [ - "1E3D86C5AA260CD4540BF952AFA756A6" + "DF7C527640E1E653821B83E2ADC0E16D" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7300.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E950AAC9B9\\\"\",\r\n \"name\": \"azsmnet3784\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4738.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FFCD15B67\\\"\",\r\n \"name\": \"azsmnet6032\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:52 GMT" + "Thu, 19 Jul 2018 17:49:33 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E950AAC9B9\"" + "W/\"0x8D5ED9FFCD15B67\"" ], "Location": [ - "https://azs-7300.search-dogfood.windows-int.net/datasources('azsmnet3784')?api-version=2017-11-11-Preview" + "https://azs-4738.search-dogfood.windows-int.net/datasources('azsmnet6032')?api-version=2017-11-11-Preview" ], "request-id": [ - "10a1460b-42fd-476e-8d57-b4347558e718" + "925b111b-a74c-47c8-88ad-b3bd12218ec9" ], "elapsed-time": [ - "40" + "44" ], "OData-Version": [ "4.0" @@ -475,26 +475,26 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8378')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODM3OCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet7971')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0Nzk3MScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "b1cc8ebf-3f51-459c-a8f7-7ebdac31ce93" + "30e23b2a-499c-4ee2-a2d0-afce0a52d9d4" ], "accept-language": [ "en-US" ], "api-key": [ - "1E3D86C5AA260CD4540BF952AFA756A6" + "DF7C527640E1E653821B83E2ADC0E16D" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'azsmnet8378' was not found in service 'azs-7300'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'azsmnet7971' was not found in service 'azs-4738'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "92" @@ -512,16 +512,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:53 GMT" + "Thu, 19 Jul 2018 17:49:35 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "b1cc8ebf-3f51-459c-a8f7-7ebdac31ce93" + "30e23b2a-499c-4ee2-a2d0-afce0a52d9d4" ], "elapsed-time": [ - "11" + "7" ], "OData-Version": [ "4.0" @@ -536,19 +536,19 @@ "StatusCode": 404 }, { - "RequestUri": "/indexers('azsmnet8378')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODM3OCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet7971')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0Nzk3MScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "97c9ee85-6f02-4822-b4f9-aed7af3512c9" + "f726aa38-7cd9-491d-89aa-8a46c3feef74" ], "accept-language": [ "en-US" ], "api-key": [ - "1E3D86C5AA260CD4540BF952AFA756A6" + "DF7C527640E1E653821B83E2ADC0E16D" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -564,16 +564,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:53 GMT" + "Thu, 19 Jul 2018 17:49:35 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "97c9ee85-6f02-4822-b4f9-aed7af3512c9" + "f726aa38-7cd9-491d-89aa-8a46c3feef74" ], "elapsed-time": [ - "45" + "78" ], "Strict-Transport-Security": [ "max-age=15724800; includeSubDomains" @@ -582,26 +582,26 @@ "StatusCode": 204 }, { - "RequestUri": "/indexers('azsmnet8378')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODM3OCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet7971')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0Nzk3MScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "8a86cc70-ba88-475c-a39f-4034f1351c6c" + "b31f8fdb-9c57-40c0-a889-3feac0b52819" ], "accept-language": [ "en-US" ], "api-key": [ - "1E3D86C5AA260CD4540BF952AFA756A6" + "DF7C527640E1E653821B83E2ADC0E16D" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'azsmnet8378' was not found in service 'azs-7300'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'azsmnet7971' was not found in service 'azs-4738'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "92" @@ -619,16 +619,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:53 GMT" + "Thu, 19 Jul 2018 17:49:35 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "8a86cc70-ba88-475c-a39f-4034f1351c6c" + "b31f8fdb-9c57-40c0-a889-3feac0b52819" ], "elapsed-time": [ - "6" + "8" ], "OData-Version": [ "4.0" @@ -646,7 +646,7 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8378\",\r\n \"dataSourceName\": \"azsmnet3784\",\r\n \"targetIndexName\": \"azsmnet5670\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7971\",\r\n \"dataSourceName\": \"azsmnet6032\",\r\n \"targetIndexName\": \"azsmnet6375\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -655,20 +655,20 @@ "1127" ], "client-request-id": [ - "0c8205ab-7fc2-4fcc-9339-0ffc5881bc42" + "c7e30963-49f3-4a06-97e1-39458d2ea85e" ], "accept-language": [ "en-US" ], "api-key": [ - "1E3D86C5AA260CD4540BF952AFA756A6" + "DF7C527640E1E653821B83E2ADC0E16D" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7300.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E95171A5EF\\\"\",\r\n \"name\": \"azsmnet8378\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet3784\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet5670\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4738.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FFDB1DFD8\\\"\",\r\n \"name\": \"azsmnet7971\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet6032\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet6375\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1111" @@ -683,22 +683,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:53 GMT" + "Thu, 19 Jul 2018 17:49:35 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E95171A5EF\"" + "W/\"0x8D5ED9FFDB1DFD8\"" ], "Location": [ - "https://azs-7300.search-dogfood.windows-int.net/indexers('azsmnet8378')?api-version=2017-11-11-Preview" + "https://azs-4738.search-dogfood.windows-int.net/indexers('azsmnet7971')?api-version=2017-11-11-Preview" ], "request-id": [ - "0c8205ab-7fc2-4fcc-9339-0ffc5881bc42" + "c7e30963-49f3-4a06-97e1-39458d2ea85e" ], "elapsed-time": [ - "190" + "229" ], "OData-Version": [ "4.0" @@ -713,13 +713,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4809/providers/Microsoft.Search/searchServices/azs-7300?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7744/providers/Microsoft.Search/searchServices/azs-4738?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NzM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e08408f5-edb3-4ee4-a21e-569e036c2f88" + "0dc2f2f9-aa30-44e4-ad1d-048341624700" ], "accept-language": [ "en-US" @@ -741,31 +741,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:45:58 GMT" + "Thu, 19 Jul 2018 17:49:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e08408f5-edb3-4ee4-a21e-569e036c2f88" + "0dc2f2f9-aa30-44e4-ad1d-048341624700" ], "request-id": [ - "e08408f5-edb3-4ee4-a21e-569e036c2f88" + "0dc2f2f9-aa30-44e4-ad1d-048341624700" ], "elapsed-time": [ - "1713" + "797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14959" + "14979" ], "x-ms-correlation-request-id": [ - "9a51b02d-7d36-42cb-bcb8-7f986d3986ac" + "afeac0a7-59d0-4ea6-bf71-2e24b4b7115a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024559Z:9a51b02d-7d36-42cb-bcb8-7f986d3986ac" + "NORTHEUROPE:20180719T174939Z:afeac0a7-59d0-4ea6-bf71-2e24b4b7115a" ], "X-Content-Type-Options": [ "nosniff" @@ -776,13 +776,13 @@ ], "Names": { "GenerateName": [ - "azsmnet4809", - "azsmnet5670", - "azsmnet3784", - "azsmnet8378" + "azsmnet7744", + "azsmnet6375", + "azsmnet6032", + "azsmnet7971" ], "GenerateServiceName": [ - "azs-7300" + "azs-4738" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsFalseForNonExistingIndexer.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsFalseForNonExistingIndexer.json index bd8817d0f73c..ce5ee4f029e6 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsFalseForNonExistingIndexer.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsFalseForNonExistingIndexer.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dff9a931-f08b-4910-afcd-8cc971de18af" + "3957ffa7-6217-4cb3-bf27-53b82a4c9a50" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:59 GMT" + "Thu, 19 Jul 2018 17:54:09 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1098" + "1139" ], "x-ms-request-id": [ - "4469e7b5-6c03-47d8-afd4-28c8f9c60c61" + "aadc7125-5c75-41e2-89e6-41a9481bdae4" ], "x-ms-correlation-request-id": [ - "4469e7b5-6c03-47d8-afd4-28c8f9c60c61" + "aadc7125-5c75-41e2-89e6-41a9481bdae4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024959Z:4469e7b5-6c03-47d8-afd4-28c8f9c60c61" + "NORTHEUROPE:20180719T175409Z:aadc7125-5c75-41e2-89e6-41a9481bdae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6076?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MDc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet339?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMzk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "222d5ade-9b6a-4a7c-8ab6-b57c62831525" + "1d54cbe9-e996-4441-9569-ec3e8e23f356" ], "accept-language": [ "en-US" @@ -84,10 +84,10 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076\",\r\n \"name\": \"azsmnet6076\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet339\",\r\n \"name\": \"azsmnet339\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:49:59 GMT" + "Thu, 19 Jul 2018 17:54:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1097" + "1138" ], "x-ms-request-id": [ - "d8bdfdcb-f343-4a59-ac8c-11c5a885778b" + "61335c27-10a8-410b-828a-3c94c24dd4e5" ], "x-ms-correlation-request-id": [ - "d8bdfdcb-f343-4a59-ac8c-11c5a885778b" + "61335c27-10a8-410b-828a-3c94c24dd4e5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025000Z:d8bdfdcb-f343-4a59-ac8c-11c5a885778b" + "NORTHEUROPE:20180719T175409Z:61335c27-10a8-410b-828a-3c94c24dd4e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-156?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet339/providers/Microsoft.Search/searchServices/azs-743?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTc0Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "7da02e5e-170c-47ff-add6-937cdb8336d1" + "787d93f3-1809-4c46-8e46-526d5840cd1d" ], "accept-language": [ "en-US" @@ -148,10 +148,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-156\",\r\n \"name\": \"azs-156\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet339/providers/Microsoft.Search/searchServices/azs-743\",\r\n \"name\": \"azs-743\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "382" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:02 GMT" + "Thu, 19 Jul 2018 17:54:14 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A50%3A03.2000524Z'\"" + "W/\"datetime'2018-07-19T17%3A54%3A14.9647941Z'\"" ], "x-ms-request-id": [ - "7da02e5e-170c-47ff-add6-937cdb8336d1" + "787d93f3-1809-4c46-8e46-526d5840cd1d" ], "request-id": [ - "7da02e5e-170c-47ff-add6-937cdb8336d1" + "787d93f3-1809-4c46-8e46-526d5840cd1d" ], "elapsed-time": [ - "1000" + "2294" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1104" + "1136" ], "x-ms-correlation-request-id": [ - "888f1516-89a1-4f55-a4b5-fa9d25ff688b" + "4aa4dc75-8466-4d44-9a0f-60ed399200d9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025003Z:888f1516-89a1-4f55-a4b5-fa9d25ff688b" + "NORTHEUROPE:20180719T175415Z:4aa4dc75-8466-4d44-9a0f-60ed399200d9" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-156/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTYvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet339/providers/Microsoft.Search/searchServices/azs-743/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTc0My9saXN0QWRtaW5LZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02f89fdf-fc3f-40a6-97ae-f4d2cf9711b0" + "850e5214-32e3-476a-a5ca-57ac0a63f236" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"172BD1229A8B5380D5CDB7BD52B4F834\",\r\n \"secondaryKey\": \"E6954E7C9BD6A7A21B9E52759A388337\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"3DB9EC4A8602EC2D2F4399310C79B246\",\r\n \"secondaryKey\": \"7A83061EFFACAAA85F0765746613EE86\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:05 GMT" + "Thu, 19 Jul 2018 17:54:16 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "02f89fdf-fc3f-40a6-97ae-f4d2cf9711b0" + "850e5214-32e3-476a-a5ca-57ac0a63f236" ], "request-id": [ - "02f89fdf-fc3f-40a6-97ae-f4d2cf9711b0" + "850e5214-32e3-476a-a5ca-57ac0a63f236" ], "elapsed-time": [ - "263" + "571" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1103" + "1135" ], "x-ms-correlation-request-id": [ - "13704b37-c179-41f3-9e70-7c8011f4883a" + "cc203926-ab4d-4038-85ea-49dd83fae57e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025005Z:13704b37-c179-41f3-9e70-7c8011f4883a" + "NORTHEUROPE:20180719T175417Z:cc203926-ab4d-4038-85ea-49dd83fae57e" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-156/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTYvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet339/providers/Microsoft.Search/searchServices/azs-743/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTc0My9saXN0UXVlcnlLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71e43561-5111-4c3f-92e2-ac9b881c69d5" + "85f26f43-a517-41a6-9f48-b3dc818e38e9" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"8973E468C11ED23C83831C99A58AD9D9\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"511413A00FC9F1C5EB6256E9824D571D\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:06 GMT" + "Thu, 19 Jul 2018 17:54:18 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "71e43561-5111-4c3f-92e2-ac9b881c69d5" + "85f26f43-a517-41a6-9f48-b3dc818e38e9" ], "request-id": [ - "71e43561-5111-4c3f-92e2-ac9b881c69d5" + "85f26f43-a517-41a6-9f48-b3dc818e38e9" ], "elapsed-time": [ - "281" + "653" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14982" ], "x-ms-correlation-request-id": [ - "688030a6-562d-45d7-9c3f-bfd6fc1cbb8f" + "6a89bc54-415e-44fa-9a4c-816ce5023b3e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025006Z:688030a6-562d-45d7-9c3f-bfd6fc1cbb8f" + "NORTHEUROPE:20180719T175418Z:6a89bc54-415e-44fa-9a4c-816ce5023b3e" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet3720\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2801\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "348785b8-0e9f-444e-9367-0b82c8a399dd" + "e60db3c4-1c5f-4bfb-b0ea-3743dc82e70a" ], "accept-language": [ "en-US" ], "api-key": [ - "172BD1229A8B5380D5CDB7BD52B4F834" + "3DB9EC4A8602EC2D2F4399310C79B246" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-156.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9E88B7569\\\"\",\r\n \"name\": \"azsmnet3720\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-743.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0A8408A9B\\\"\",\r\n \"name\": \"azsmnet2801\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2085" + "2535" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:07 GMT" + "Thu, 19 Jul 2018 17:54:21 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9E88B7569\"" + "W/\"0x8D5EDA0A8408A9B\"" ], "Location": [ - "https://azs-156.search-dogfood.windows-int.net/indexes('azsmnet3720')?api-version=2017-11-11-Preview" + "https://azs-743.search-dogfood.windows-int.net/indexes('azsmnet2801')?api-version=2017-11-11-Preview" ], "request-id": [ - "348785b8-0e9f-444e-9367-0b82c8a399dd" + "e60db3c4-1c5f-4bfb-b0ea-3743dc82e70a" ], "elapsed-time": [ - "1450" + "904" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4605\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7141\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "aca6b259-1fe5-435e-9ffa-c1533b956821" + "5a786676-a8ea-4601-a598-c499d56ed2f4" ], "accept-language": [ "en-US" ], "api-key": [ - "172BD1229A8B5380D5CDB7BD52B4F834" + "3DB9EC4A8602EC2D2F4399310C79B246" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-156.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9E899D0C2\\\"\",\r\n \"name\": \"azsmnet4605\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-743.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0A85353D4\\\"\",\r\n \"name\": \"azsmnet7141\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:07 GMT" + "Thu, 19 Jul 2018 17:54:21 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9E899D0C2\"" + "W/\"0x8D5EDA0A85353D4\"" ], "Location": [ - "https://azs-156.search-dogfood.windows-int.net/datasources('azsmnet4605')?api-version=2017-11-11-Preview" + "https://azs-743.search-dogfood.windows-int.net/datasources('azsmnet7141')?api-version=2017-11-11-Preview" ], "request-id": [ - "aca6b259-1fe5-435e-9ffa-c1533b956821" + "5a786676-a8ea-4601-a598-c499d56ed2f4" ], "elapsed-time": [ - "52" + "47" ], "OData-Version": [ "4.0" @@ -481,20 +481,20 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "5fe72c7c-94cd-4131-94c2-1cae2c25f541" + "10a35beb-5159-4f83-8fbe-773da1f862b8" ], "accept-language": [ "en-US" ], "api-key": [ - "172BD1229A8B5380D5CDB7BD52B4F834" + "3DB9EC4A8602EC2D2F4399310C79B246" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'invalidindexer' was not found in service 'azs-156'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'invalidindexer' was not found in service 'azs-743'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "94" @@ -512,16 +512,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:08 GMT" + "Thu, 19 Jul 2018 17:54:22 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "5fe72c7c-94cd-4131-94c2-1cae2c25f541" + "10a35beb-5159-4f83-8fbe-773da1f862b8" ], "elapsed-time": [ - "59" + "65" ], "OData-Version": [ "4.0" @@ -536,13 +536,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-156?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet339/providers/Microsoft.Search/searchServices/azs-743?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTc0Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71c6aaca-fc00-49a1-8f60-e079ba33f348" + "700338f5-edca-4955-b981-a283101e636e" ], "accept-language": [ "en-US" @@ -564,31 +564,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:12 GMT" + "Thu, 19 Jul 2018 17:54:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "71c6aaca-fc00-49a1-8f60-e079ba33f348" + "700338f5-edca-4955-b981-a283101e636e" ], "request-id": [ - "71c6aaca-fc00-49a1-8f60-e079ba33f348" + "700338f5-edca-4955-b981-a283101e636e" ], "elapsed-time": [ - "754" + "2072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14951" + "14966" ], "x-ms-correlation-request-id": [ - "ad2bfa2b-8307-4326-a8f4-d28b5d2cfa15" + "4ab759d4-035f-483e-806e-ade11a15abbc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025013Z:ad2bfa2b-8307-4326-a8f4-d28b5d2cfa15" + "NORTHEUROPE:20180719T175428Z:4ab759d4-035f-483e-806e-ade11a15abbc" ], "X-Content-Type-Options": [ "nosniff" @@ -599,12 +599,12 @@ ], "Names": { "GenerateName": [ - "azsmnet6076", - "azsmnet3720", - "azsmnet4605" + "azsmnet339", + "azsmnet2801", + "azsmnet7141" ], "GenerateServiceName": [ - "azs-156" + "azs-743" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsTrueForExistingIndexer.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsTrueForExistingIndexer.json index e528580672bd..764bc5a30509 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsTrueForExistingIndexer.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/ExistsReturnsTrueForExistingIndexer.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a37e4d5-d3c5-4952-b865-5ad3231a8626" + "99906ffb-4533-4b06-bf1c-682972b19168" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:17 GMT" + "Thu, 19 Jul 2018 17:47:47 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1109" + "1156" ], "x-ms-request-id": [ - "65b2e828-1c3c-424f-918c-b6baea9aa7fc" + "d1ac94ef-90d6-4386-a212-e27050f7a7df" ], "x-ms-correlation-request-id": [ - "65b2e828-1c3c-424f-918c-b6baea9aa7fc" + "d1ac94ef-90d6-4386-a212-e27050f7a7df" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024417Z:65b2e828-1c3c-424f-918c-b6baea9aa7fc" + "NORTHEUROPE:20180719T174747Z:d1ac94ef-90d6-4386-a212-e27050f7a7df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3942?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzOTQyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4711?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NzExP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "fdc401a1-725d-425b-b48e-332f322f50f6" + "ca906824-bc2f-4923-8514-da5030e084e4" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3942\",\r\n \"name\": \"azsmnet3942\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4711\",\r\n \"name\": \"azsmnet4711\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:18 GMT" + "Thu, 19 Jul 2018 17:47:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1108" + "1155" ], "x-ms-request-id": [ - "14c4f4eb-ab1d-433d-bf97-0a00884e87b0" + "3722c304-ac29-47b2-89fb-c1744eb04374" ], "x-ms-correlation-request-id": [ - "14c4f4eb-ab1d-433d-bf97-0a00884e87b0" + "3722c304-ac29-47b2-89fb-c1744eb04374" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024418Z:14c4f4eb-ab1d-433d-bf97-0a00884e87b0" + "NORTHEUROPE:20180719T174748Z:3722c304-ac29-47b2-89fb-c1744eb04374" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3942/providers/Microsoft.Search/searchServices/azs-1534?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTM0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4711/providers/Microsoft.Search/searchServices/azs-5500?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzExL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "c293a41d-f6c1-4bcc-ad00-fe6cba2c4a25" + "c157ecf9-54d8-4536-b1e5-269ba8576827" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3942/providers/Microsoft.Search/searchServices/azs-1534\",\r\n \"name\": \"azs-1534\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4711/providers/Microsoft.Search/searchServices/azs-5500\",\r\n \"name\": \"azs-5500\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:22 GMT" + "Thu, 19 Jul 2018 17:47:51 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A44%3A23.1141754Z'\"" + "W/\"datetime'2018-07-19T17%3A47%3A51.3664929Z'\"" ], "x-ms-request-id": [ - "c293a41d-f6c1-4bcc-ad00-fe6cba2c4a25" + "c157ecf9-54d8-4536-b1e5-269ba8576827" ], "request-id": [ - "c293a41d-f6c1-4bcc-ad00-fe6cba2c4a25" + "c157ecf9-54d8-4536-b1e5-269ba8576827" ], "elapsed-time": [ - "1569" + "1232" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1119" + "1145" ], "x-ms-correlation-request-id": [ - "6978e068-2eb6-4db1-8804-36c58d7efe49" + "fca0b3aa-f719-4441-8f75-d855d8d01629" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024423Z:6978e068-2eb6-4db1-8804-36c58d7efe49" + "NORTHEUROPE:20180719T174751Z:fca0b3aa-f719-4441-8f75-d855d8d01629" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3942/providers/Microsoft.Search/searchServices/azs-1534/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTM0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4711/providers/Microsoft.Search/searchServices/azs-5500/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzExL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTAwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4465b53-f11e-4f2c-98c8-bc770c1d7de9" + "9abeaadf-37f5-4c90-a322-a6583588d871" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"094D2908CAF1F90734CA1B32C158C38C\",\r\n \"secondaryKey\": \"1AD987DAFDF4DA403A1AA665F83F3389\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"6B53A5E179BC0BCA446E6FE47BC39EC0\",\r\n \"secondaryKey\": \"3B28FDB4F4EBA81A2AA2665E5D1A911F\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:24 GMT" + "Thu, 19 Jul 2018 17:47:53 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c4465b53-f11e-4f2c-98c8-bc770c1d7de9" + "9abeaadf-37f5-4c90-a322-a6583588d871" ], "request-id": [ - "c4465b53-f11e-4f2c-98c8-bc770c1d7de9" + "9abeaadf-37f5-4c90-a322-a6583588d871" ], "elapsed-time": [ - "368" + "245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1118" + "1144" ], "x-ms-correlation-request-id": [ - "5b408c47-ec24-4635-bbd2-5b6924266dc0" + "558e02c6-6f9f-47c2-90c3-c69dcfeb80cd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024425Z:5b408c47-ec24-4635-bbd2-5b6924266dc0" + "NORTHEUROPE:20180719T174754Z:558e02c6-6f9f-47c2-90c3-c69dcfeb80cd" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3942/providers/Microsoft.Search/searchServices/azs-1534/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTM0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4711/providers/Microsoft.Search/searchServices/azs-5500/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzExL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTAwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "566d14d0-c518-4271-8e11-58cb60fae997" + "7d520bef-868e-43f3-b4a0-f580c349c377" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"8FC4F1879325921FCC3D10F3E268780A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2FE105C109A4AA8EBFAB31D5F4E37EAD\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:26 GMT" + "Thu, 19 Jul 2018 17:47:54 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "566d14d0-c518-4271-8e11-58cb60fae997" + "7d520bef-868e-43f3-b4a0-f580c349c377" ], "request-id": [ - "566d14d0-c518-4271-8e11-58cb60fae997" + "7d520bef-868e-43f3-b4a0-f580c349c377" ], "elapsed-time": [ - "190" + "213" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14984" ], "x-ms-correlation-request-id": [ - "481bc91f-4983-44a5-9f74-c1e5179ea06e" + "6733aa28-7e6a-4fed-8787-7c1b14b9c341" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024426Z:481bc91f-4983-44a5-9f74-c1e5179ea06e" + "NORTHEUROPE:20180719T174754Z:6733aa28-7e6a-4fed-8787-7c1b14b9c341" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet8327\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7591\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "9c89cab5-4392-425d-86fa-dd9f8dfd9b88" + "18624a56-b5b8-4c22-b302-fc7ba29fe8d7" ], "accept-language": [ "en-US" ], "api-key": [ - "094D2908CAF1F90734CA1B32C158C38C" + "6B53A5E179BC0BCA446E6FE47BC39EC0" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1534.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E91D99A474\\\"\",\r\n \"name\": \"azsmnet8327\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5500.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FC493AC1C\\\"\",\r\n \"name\": \"azsmnet7591\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:26 GMT" + "Thu, 19 Jul 2018 17:47:59 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E91D99A474\"" + "W/\"0x8D5ED9FC493AC1C\"" ], "Location": [ - "https://azs-1534.search-dogfood.windows-int.net/indexes('azsmnet8327')?api-version=2017-11-11-Preview" + "https://azs-5500.search-dogfood.windows-int.net/indexes('azsmnet7591')?api-version=2017-11-11-Preview" ], "request-id": [ - "9c89cab5-4392-425d-86fa-dd9f8dfd9b88" + "18624a56-b5b8-4c22-b302-fc7ba29fe8d7" ], "elapsed-time": [ - "880" + "3669" ], "OData-Version": [ "4.0" @@ -408,32 +408,32 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet852\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet9587\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "320" + "321" ], "client-request-id": [ - "e10d8147-ec51-4d1a-b423-e12cca4d7437" + "09c1c835-d75a-442f-bdb2-91a0b80009d5" ], "accept-language": [ "en-US" ], "api-key": [ - "094D2908CAF1F90734CA1B32C158C38C" + "6B53A5E179BC0BCA446E6FE47BC39EC0" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1534.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E91DA82700\\\"\",\r\n \"name\": \"azsmnet852\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5500.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FC4A9D18F\\\"\",\r\n \"name\": \"azsmnet9587\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "526" + "527" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:26 GMT" + "Thu, 19 Jul 2018 17:47:59 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E91DA82700\"" + "W/\"0x8D5ED9FC4A9D18F\"" ], "Location": [ - "https://azs-1534.search-dogfood.windows-int.net/datasources('azsmnet852')?api-version=2017-11-11-Preview" + "https://azs-5500.search-dogfood.windows-int.net/datasources('azsmnet9587')?api-version=2017-11-11-Preview" ], "request-id": [ - "e10d8147-ec51-4d1a-b423-e12cca4d7437" + "09c1c835-d75a-442f-bdb2-91a0b80009d5" ], "elapsed-time": [ - "54" + "62" ], "OData-Version": [ "4.0" @@ -478,32 +478,32 @@ "RequestUri": "/indexers?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4623\",\r\n \"dataSourceName\": \"azsmnet852\",\r\n \"targetIndexName\": \"azsmnet8327\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1902\",\r\n \"dataSourceName\": \"azsmnet9587\",\r\n \"targetIndexName\": \"azsmnet7591\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1126" + "1127" ], "client-request-id": [ - "90d019cb-2167-482f-84cd-7c0b835c25c7" + "255b014c-399f-4124-a1e4-83ce5ec96058" ], "accept-language": [ "en-US" ], "api-key": [ - "094D2908CAF1F90734CA1B32C158C38C" + "6B53A5E179BC0BCA446E6FE47BC39EC0" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1534.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E91EC1F282\\\"\",\r\n \"name\": \"azsmnet4623\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet852\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8327\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5500.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FC5EEAE78\\\"\",\r\n \"name\": \"azsmnet1902\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet9587\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7591\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1110" + "1111" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -515,22 +515,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:28 GMT" + "Thu, 19 Jul 2018 17:48:01 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E91EC1F282\"" + "W/\"0x8D5ED9FC5EEAE78\"" ], "Location": [ - "https://azs-1534.search-dogfood.windows-int.net/indexers('azsmnet4623')?api-version=2017-11-11-Preview" + "https://azs-5500.search-dogfood.windows-int.net/indexers('azsmnet1902')?api-version=2017-11-11-Preview" ], "request-id": [ - "90d019cb-2167-482f-84cd-7c0b835c25c7" + "255b014c-399f-4124-a1e4-83ce5ec96058" ], "elapsed-time": [ - "731" + "1028" ], "OData-Version": [ "4.0" @@ -545,26 +545,26 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet4623')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDYyMycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet1902')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MTkwMicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "4a6597e7-08c9-4e1f-b7b2-3788a0a6b6a9" + "59c2a27e-b89a-4726-b23f-6b3516770af0" ], "accept-language": [ "en-US" ], "api-key": [ - "094D2908CAF1F90734CA1B32C158C38C" + "6B53A5E179BC0BCA446E6FE47BC39EC0" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1534.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E91EC1F282\\\"\",\r\n \"name\": \"azsmnet4623\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet852\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8327\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5500.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9FC5EEAE78\\\"\",\r\n \"name\": \"azsmnet1902\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet9587\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet7591\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -576,22 +576,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:28 GMT" + "Thu, 19 Jul 2018 17:48:01 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E91EC1F282\"" + "W/\"0x8D5ED9FC5EEAE78\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "4a6597e7-08c9-4e1f-b7b2-3788a0a6b6a9" + "59c2a27e-b89a-4726-b23f-6b3516770af0" ], "elapsed-time": [ - "10" + "15" ], "OData-Version": [ "4.0" @@ -606,13 +606,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3942/providers/Microsoft.Search/searchServices/azs-1534?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTM0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4711/providers/Microsoft.Search/searchServices/azs-5500?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzExL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee95d7f-cd11-45e9-aaa2-2f55765aea02" + "e6603507-f011-4d31-8df9-0e938c840df4" ], "accept-language": [ "en-US" @@ -634,31 +634,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:44:32 GMT" + "Thu, 19 Jul 2018 17:48:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8ee95d7f-cd11-45e9-aaa2-2f55765aea02" + "e6603507-f011-4d31-8df9-0e938c840df4" ], "request-id": [ - "8ee95d7f-cd11-45e9-aaa2-2f55765aea02" + "e6603507-f011-4d31-8df9-0e938c840df4" ], "elapsed-time": [ - "677" + "837" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14960" + "14977" ], "x-ms-correlation-request-id": [ - "7781f64b-2108-4749-a57e-7abdc8a627be" + "0e270b82-fbb0-463a-a887-fb2739635720" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024433Z:7781f64b-2108-4749-a57e-7abdc8a627be" + "NORTHEUROPE:20180719T174806Z:0e270b82-fbb0-463a-a887-fb2739635720" ], "X-Content-Type-Options": [ "nosniff" @@ -669,13 +669,13 @@ ], "Names": { "GenerateName": [ - "azsmnet3942", - "azsmnet8327", - "azsmnet852", - "azsmnet4623" + "azsmnet4711", + "azsmnet7591", + "azsmnet9587", + "azsmnet1902" ], "GenerateServiceName": [ - "azs-1534" + "azs-5500" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/GetIndexerThrowsOnNotFound.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/GetIndexerThrowsOnNotFound.json index 3530aa740e65..98c2d6307b72 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/GetIndexerThrowsOnNotFound.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/GetIndexerThrowsOnNotFound.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e69481b6-6144-4cbe-b6e9-c0e137880951" + "dad7d3a0-ca0c-4321-9ce1-28c2c3784934" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:30 GMT" + "Thu, 19 Jul 2018 17:51:17 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1115" + "1147" ], "x-ms-request-id": [ - "9bbf7978-c3a4-457e-9b02-2d5289ce3d5f" + "275ad61b-2daf-4b16-92a4-9e76a73b339e" ], "x-ms-correlation-request-id": [ - "9bbf7978-c3a4-457e-9b02-2d5289ce3d5f" + "275ad61b-2daf-4b16-92a4-9e76a73b339e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024730Z:9bbf7978-c3a4-457e-9b02-2d5289ce3d5f" + "NORTHEUROPE:20180719T175117Z:275ad61b-2daf-4b16-92a4-9e76a73b339e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3893?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzODkzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1599?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNTk5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "b436b404-b30f-4577-b73c-a5ca9c7ea986" + "9189a15c-f4b6-4b96-aebb-3c4881b52977" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3893\",\r\n \"name\": \"azsmnet3893\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1599\",\r\n \"name\": \"azsmnet1599\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:31 GMT" + "Thu, 19 Jul 2018 17:51:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1114" + "1146" ], "x-ms-request-id": [ - "e27f1247-410d-4b25-b5df-bfafde1ca83b" + "249065c7-c81c-4c00-87eb-b93ece359b22" ], "x-ms-correlation-request-id": [ - "e27f1247-410d-4b25-b5df-bfafde1ca83b" + "249065c7-c81c-4c00-87eb-b93ece359b22" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024731Z:e27f1247-410d-4b25-b5df-bfafde1ca83b" + "NORTHEUROPE:20180719T175117Z:249065c7-c81c-4c00-87eb-b93ece359b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3893/providers/Microsoft.Search/searchServices/azs-1788?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzg4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1599/providers/Microsoft.Search/searchServices/azs-7323?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "713ff26c-350a-4f45-85fd-886bdb3f0110" + "b7f0be17-2f16-4f9e-ae54-58b38016c23d" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3893/providers/Microsoft.Search/searchServices/azs-1788\",\r\n \"name\": \"azs-1788\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1599/providers/Microsoft.Search/searchServices/azs-7323\",\r\n \"name\": \"azs-7323\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:35 GMT" + "Thu, 19 Jul 2018 17:51:23 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A47%3A34.9720519Z'\"" + "W/\"datetime'2018-07-19T17%3A51%3A23.6998017Z'\"" ], "x-ms-request-id": [ - "713ff26c-350a-4f45-85fd-886bdb3f0110" + "b7f0be17-2f16-4f9e-ae54-58b38016c23d" ], "request-id": [ - "713ff26c-350a-4f45-85fd-886bdb3f0110" + "b7f0be17-2f16-4f9e-ae54-58b38016c23d" ], "elapsed-time": [ - "960" + "2978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1087" + "1145" ], "x-ms-correlation-request-id": [ - "f5d76106-862f-4803-a7f8-49fcf067e403" + "f94cbe09-99e7-48aa-900a-2c9de982297d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024735Z:f5d76106-862f-4803-a7f8-49fcf067e403" + "NORTHEUROPE:20180719T175124Z:f94cbe09-99e7-48aa-900a-2c9de982297d" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3893/providers/Microsoft.Search/searchServices/azs-1788/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzg4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1599/providers/Microsoft.Search/searchServices/azs-7323/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzIzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c3f7236-1321-4b1b-ad2f-a74afd09837e" + "17e87632-6254-4716-be75-2ed40ae947b5" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"F0F50DB58D3DE229B3ECB2194DDAC2A7\",\r\n \"secondaryKey\": \"4A8B84E50E566880E8F309C241F5F541\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"C32CBC7303847CCE082CF8D6F8A86C84\",\r\n \"secondaryKey\": \"E6B4F05A35CF213B391A385B6F8B46D7\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:37 GMT" + "Thu, 19 Jul 2018 17:51:27 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9c3f7236-1321-4b1b-ad2f-a74afd09837e" + "17e87632-6254-4716-be75-2ed40ae947b5" ], "request-id": [ - "9c3f7236-1321-4b1b-ad2f-a74afd09837e" + "17e87632-6254-4716-be75-2ed40ae947b5" ], "elapsed-time": [ - "168" + "572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1086" + "1144" ], "x-ms-correlation-request-id": [ - "9421b9bf-e7f4-4357-8081-dea7a4ee3e3d" + "e62e6690-8a92-4c28-80dd-c52c91ff00a9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024738Z:9421b9bf-e7f4-4357-8081-dea7a4ee3e3d" + "NORTHEUROPE:20180719T175127Z:e62e6690-8a92-4c28-80dd-c52c91ff00a9" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3893/providers/Microsoft.Search/searchServices/azs-1788/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzg4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1599/providers/Microsoft.Search/searchServices/azs-7323/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzIzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a2fe6df-687b-4262-a4bf-06668f38c6ae" + "ae96c5b8-fdac-431b-a843-d09d9264bc97" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BD3A69114379E7E151E14BC8C62051F3\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B75FA7E56C6C9943B01B262925B00421\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:38 GMT" + "Thu, 19 Jul 2018 17:51:27 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0a2fe6df-687b-4262-a4bf-06668f38c6ae" + "ae96c5b8-fdac-431b-a843-d09d9264bc97" ], "request-id": [ - "0a2fe6df-687b-4262-a4bf-06668f38c6ae" + "ae96c5b8-fdac-431b-a843-d09d9264bc97" ], "elapsed-time": [ - "350" + "499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14987" ], "x-ms-correlation-request-id": [ - "8cb5199c-5b5f-4124-a7a6-1ef560adf153" + "57d21f2e-b4c6-4927-afd1-85abb1170d92" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024738Z:8cb5199c-5b5f-4124-a7a6-1ef560adf153" + "NORTHEUROPE:20180719T175128Z:57d21f2e-b4c6-4927-afd1-85abb1170d92" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet5714\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet5021\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "6861ced0-47c7-48e5-bbfd-68a878a07d0f" + "87b07f33-700e-4903-b4d3-bcb12385cfee" ], "accept-language": [ "en-US" ], "api-key": [ - "F0F50DB58D3DE229B3ECB2194DDAC2A7" + "C32CBC7303847CCE082CF8D6F8A86C84" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1788.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E990D9F33E\\\"\",\r\n \"name\": \"azsmnet5714\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7323.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA042092338\\\"\",\r\n \"name\": \"azsmnet5021\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:40 GMT" + "Thu, 19 Jul 2018 17:51:30 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E990D9F33E\"" + "W/\"0x8D5EDA042092338\"" ], "Location": [ - "https://azs-1788.search-dogfood.windows-int.net/indexes('azsmnet5714')?api-version=2017-11-11-Preview" + "https://azs-7323.search-dogfood.windows-int.net/indexes('azsmnet5021')?api-version=2017-11-11-Preview" ], "request-id": [ - "6861ced0-47c7-48e5-bbfd-68a878a07d0f" + "87b07f33-700e-4903-b4d3-bcb12385cfee" ], "elapsed-time": [ - "1636" + "849" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1706\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8107\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "fa3b468e-a9f3-4e03-9ec5-4cad97c46efd" + "12fa69ec-c56d-41fd-9510-499208886838" ], "accept-language": [ "en-US" ], "api-key": [ - "F0F50DB58D3DE229B3ECB2194DDAC2A7" + "C32CBC7303847CCE082CF8D6F8A86C84" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1788.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E990E67976\\\"\",\r\n \"name\": \"azsmnet1706\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7323.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0421CD6E6\\\"\",\r\n \"name\": \"azsmnet8107\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:40 GMT" + "Thu, 19 Jul 2018 17:51:30 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E990E67976\"" + "W/\"0x8D5EDA0421CD6E6\"" ], "Location": [ - "https://azs-1788.search-dogfood.windows-int.net/datasources('azsmnet1706')?api-version=2017-11-11-Preview" + "https://azs-7323.search-dogfood.windows-int.net/datasources('azsmnet8107')?api-version=2017-11-11-Preview" ], "request-id": [ - "fa3b468e-a9f3-4e03-9ec5-4cad97c46efd" + "12fa69ec-c56d-41fd-9510-499208886838" ], "elapsed-time": [ - "37" + "50" ], "OData-Version": [ "4.0" @@ -481,20 +481,20 @@ "RequestBody": "", "RequestHeaders": { "client-request-id": [ - "233cb468-4f1c-4130-bec1-6d5c28161ffa" + "a6599f02-77e5-4dfa-ac6d-b2e22511d919" ], "accept-language": [ "en-US" ], "api-key": [ - "F0F50DB58D3DE229B3ECB2194DDAC2A7" + "C32CBC7303847CCE082CF8D6F8A86C84" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'thisindexerdoesnotexist' was not found in service 'azs-1788'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"Indexer 'thisindexerdoesnotexist' was not found in service 'azs-7323'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "104" @@ -512,16 +512,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:41 GMT" + "Thu, 19 Jul 2018 17:51:31 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "233cb468-4f1c-4130-bec1-6d5c28161ffa" + "a6599f02-77e5-4dfa-ac6d-b2e22511d919" ], "elapsed-time": [ - "55" + "44" ], "OData-Version": [ "4.0" @@ -536,13 +536,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3893/providers/Microsoft.Search/searchServices/azs-1788?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzg4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1599/providers/Microsoft.Search/searchServices/azs-7323?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03MzIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d35f29c-f4d8-41d5-a474-3a971547e752" + "8490a5f4-d892-458c-83e0-8a8e4caf6ca9" ], "accept-language": [ "en-US" @@ -564,31 +564,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:46 GMT" + "Thu, 19 Jul 2018 17:51:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0d35f29c-f4d8-41d5-a474-3a971547e752" + "8490a5f4-d892-458c-83e0-8a8e4caf6ca9" ], "request-id": [ - "0d35f29c-f4d8-41d5-a474-3a971547e752" + "8490a5f4-d892-458c-83e0-8a8e4caf6ca9" ], "elapsed-time": [ - "1421" + "853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14948" + "14972" ], "x-ms-correlation-request-id": [ - "7d3e8692-d281-4c05-b5b6-4ecc68aefc91" + "3853b115-86b4-427b-9636-6fd9630ae2b8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024746Z:7d3e8692-d281-4c05-b5b6-4ecc68aefc91" + "NORTHEUROPE:20180719T175136Z:3853b115-86b4-427b-9636-6fd9630ae2b8" ], "X-Content-Type-Options": [ "nosniff" @@ -599,12 +599,12 @@ ], "Names": { "GenerateName": [ - "azsmnet3893", - "azsmnet5714", - "azsmnet1706" + "azsmnet1599", + "azsmnet5021", + "azsmnet8107" ], "GenerateServiceName": [ - "azs-1788" + "azs-7323" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsFailsOnNoResource.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsFailsOnNoResource.json index 1e8a39057716..a4fac757a3bd 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsFailsOnNoResource.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsFailsOnNoResource.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c552b7c-7d0b-4411-a451-b5c6da176424" + "8f9ad614-33ce-4ddf-b461-8c7e2c894f50" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:41 GMT" + "Thu, 19 Jul 2018 17:55:01 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1100" + "1132" ], "x-ms-request-id": [ - "07f291ff-f17e-4c1f-92b6-4ef4b6e32873" + "77679ff8-0414-4ec7-aeb6-05c714f4cd9d" ], "x-ms-correlation-request-id": [ - "07f291ff-f17e-4c1f-92b6-4ef4b6e32873" + "77679ff8-0414-4ec7-aeb6-05c714f4cd9d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025041Z:07f291ff-f17e-4c1f-92b6-4ef4b6e32873" + "NORTHEUROPE:20180719T175502Z:77679ff8-0414-4ec7-aeb6-05c714f4cd9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7674?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3Njc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5874?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1ODc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "7fd3679d-28da-4c04-bb67-cfec0bde22d4" + "14e0ca8e-cf85-4d64-b1c4-01caadc15ee9" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7674\",\r\n \"name\": \"azsmnet7674\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5874\",\r\n \"name\": \"azsmnet5874\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:42 GMT" + "Thu, 19 Jul 2018 17:55:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1099" + "1131" ], "x-ms-request-id": [ - "771d8829-6ced-4749-9f8f-afe632229bcb" + "49ea24de-d46b-46a9-aaea-e09a46e8f399" ], "x-ms-correlation-request-id": [ - "771d8829-6ced-4749-9f8f-afe632229bcb" + "49ea24de-d46b-46a9-aaea-e09a46e8f399" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025042Z:771d8829-6ced-4749-9f8f-afe632229bcb" + "NORTHEUROPE:20180719T175502Z:49ea24de-d46b-46a9-aaea-e09a46e8f399" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7674/providers/Microsoft.Search/searchServices/azs-8964?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5874/providers/Microsoft.Search/searchServices/azs-1024?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDI0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "133a9ceb-ecd6-48c6-b484-04add8b6ac89" + "33b65ab5-cfba-47a4-8470-cd61b698e338" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7674/providers/Microsoft.Search/searchServices/azs-8964\",\r\n \"name\": \"azs-8964\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5874/providers/Microsoft.Search/searchServices/azs-1024\",\r\n \"name\": \"azs-1024\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:45 GMT" + "Thu, 19 Jul 2018 17:55:07 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A50%3A45.7628398Z'\"" + "W/\"datetime'2018-07-19T17%3A55%3A06.9414273Z'\"" ], "x-ms-request-id": [ - "133a9ceb-ecd6-48c6-b484-04add8b6ac89" + "33b65ab5-cfba-47a4-8470-cd61b698e338" ], "request-id": [ - "133a9ceb-ecd6-48c6-b484-04add8b6ac89" + "33b65ab5-cfba-47a4-8470-cd61b698e338" ], "elapsed-time": [ - "988" + "1133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1109" + "1139" ], "x-ms-correlation-request-id": [ - "c446f87a-0591-45c7-b94a-6c649617693a" + "3e441fa2-6033-4855-8ec3-e8d38dfbd0f0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025046Z:c446f87a-0591-45c7-b94a-6c649617693a" + "NORTHEUROPE:20180719T175507Z:3e441fa2-6033-4855-8ec3-e8d38dfbd0f0" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7674/providers/Microsoft.Search/searchServices/azs-8964/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTY0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5874/providers/Microsoft.Search/searchServices/azs-1024/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDI0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b902d5c-a4a6-4b4b-ac84-6c9fcdae1f32" + "622b5cb1-b268-4ef5-88d7-7d9526e72055" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"0839175236CF45F9A339B512730B2192\",\r\n \"secondaryKey\": \"345F8FA6590A1B4DAF97A7FE56E35DF8\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"ACAE6C3593EFE7611CA7379EF203E9DF\",\r\n \"secondaryKey\": \"76BA7F8BF14189900A58C0BE040FD279\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:47 GMT" + "Thu, 19 Jul 2018 17:55:08 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2b902d5c-a4a6-4b4b-ac84-6c9fcdae1f32" + "622b5cb1-b268-4ef5-88d7-7d9526e72055" ], "request-id": [ - "2b902d5c-a4a6-4b4b-ac84-6c9fcdae1f32" + "622b5cb1-b268-4ef5-88d7-7d9526e72055" ], "elapsed-time": [ - "100" + "146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1108" + "1138" ], "x-ms-correlation-request-id": [ - "92f2456f-b24b-400e-b0ce-84db6e6ad180" + "da4ac1f0-e7e2-4af0-989c-966b0a88221c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025048Z:92f2456f-b24b-400e-b0ce-84db6e6ad180" + "NORTHEUROPE:20180719T175509Z:da4ac1f0-e7e2-4af0-989c-966b0a88221c" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7674/providers/Microsoft.Search/searchServices/azs-8964/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTY0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5874/providers/Microsoft.Search/searchServices/azs-1024/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDI0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1523a335-9ff1-424c-9df6-958e444cafd4" + "9b7e1535-4dd0-4fc6-bbbb-b66d91032823" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"180E120858EFA480A0D643A41264B063\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"4F09CA289E3B6A809B8D35837655F0BB\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:47 GMT" + "Thu, 19 Jul 2018 17:55:09 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1523a335-9ff1-424c-9df6-958e444cafd4" + "9b7e1535-4dd0-4fc6-bbbb-b66d91032823" ], "request-id": [ - "1523a335-9ff1-424c-9df6-958e444cafd4" + "9b7e1535-4dd0-4fc6-bbbb-b66d91032823" ], "elapsed-time": [ - "167" + "215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14985" ], "x-ms-correlation-request-id": [ - "9bef895e-bca1-415b-8f8f-e77af4bfa411" + "e767c8b5-d2d6-47e1-bf7e-57a32b67827d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025048Z:9bef895e-bca1-415b-8f8f-e77af4bfa411" + "NORTHEUROPE:20180719T175509Z:e767c8b5-d2d6-47e1-bf7e-57a32b67827d" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet12\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet307\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1882" + "2349" ], "client-request-id": [ - "98039bcd-8ec6-4922-bbcb-e51ac97e5973" + "83846243-2d36-4cf5-bb1b-87f650149748" ], "accept-language": [ "en-US" ], "api-key": [ - "0839175236CF45F9A339B512730B2192" + "ACAE6C3593EFE7611CA7379EF203E9DF" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8964.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6EA01B61940\\\"\",\r\n \"name\": \"azsmnet12\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1024.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0C6CE9282\\\"\",\r\n \"name\": \"azsmnet307\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2084" + "2535" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:50 GMT" + "Thu, 19 Jul 2018 17:55:12 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6EA01B61940\"" + "W/\"0x8D5EDA0C6CE9282\"" ], "Location": [ - "https://azs-8964.search-dogfood.windows-int.net/indexes('azsmnet12')?api-version=2017-11-11-Preview" + "https://azs-1024.search-dogfood.windows-int.net/indexes('azsmnet307')?api-version=2017-11-11-Preview" ], "request-id": [ - "98039bcd-8ec6-4922-bbcb-e51ac97e5973" + "83846243-2d36-4cf5-bb1b-87f650149748" ], "elapsed-time": [ - "842" + "1756" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet6536\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1680\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "5f5a83a8-b489-4a60-b3b6-eeec139a6c5b" + "4c14f839-869e-4386-908b-2601ace97a7d" ], "accept-language": [ "en-US" ], "api-key": [ - "0839175236CF45F9A339B512730B2192" + "ACAE6C3593EFE7611CA7379EF203E9DF" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8964.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6EA01C6BF16\\\"\",\r\n \"name\": \"azsmnet6536\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1024.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0C6E21F3E\\\"\",\r\n \"name\": \"azsmnet1680\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:50 GMT" + "Thu, 19 Jul 2018 17:55:12 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6EA01C6BF16\"" + "W/\"0x8D5EDA0C6E21F3E\"" ], "Location": [ - "https://azs-8964.search-dogfood.windows-int.net/datasources('azsmnet6536')?api-version=2017-11-11-Preview" + "https://azs-1024.search-dogfood.windows-int.net/datasources('azsmnet1680')?api-version=2017-11-11-Preview" ], "request-id": [ - "5f5a83a8-b489-4a60-b3b6-eeec139a6c5b" + "4c14f839-869e-4386-908b-2601ace97a7d" ], "elapsed-time": [ - "44" + "48" ], "OData-Version": [ "4.0" @@ -475,19 +475,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet7192')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzE5MicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet3096')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0MzA5NicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet7192\",\r\n \"dataSourceName\": \"azsmnet6536\",\r\n \"targetIndexName\": \"azsmnet12\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet3096\",\r\n \"dataSourceName\": \"azsmnet1680\",\r\n \"targetIndexName\": \"azsmnet307\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1125" + "1126" ], "client-request-id": [ - "40a3c171-495e-4384-bb04-4bba3cf61a27" + "d096bb54-7ba9-44df-9f73-b765430d1083" ], "Prefer": [ "return=representation" @@ -499,7 +499,7 @@ "*" ], "api-key": [ - "0839175236CF45F9A339B512730B2192" + "ACAE6C3593EFE7611CA7379EF203E9DF" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -524,16 +524,16 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:51 GMT" + "Thu, 19 Jul 2018 17:55:13 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "40a3c171-495e-4384-bb04-4bba3cf61a27" + "d096bb54-7ba9-44df-9f73-b765430d1083" ], "elapsed-time": [ - "45" + "37" ], "OData-Version": [ "4.0" @@ -548,13 +548,13 @@ "StatusCode": 412 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7674/providers/Microsoft.Search/searchServices/azs-8964?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04OTY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5874/providers/Microsoft.Search/searchServices/azs-1024?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDI0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bf2660d-d7aa-455b-b9c7-fa11a59d6a14" + "c3a8766e-9b60-4076-b252-75056263a173" ], "accept-language": [ "en-US" @@ -576,31 +576,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:55 GMT" + "Thu, 19 Jul 2018 17:55:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2bf2660d-d7aa-455b-b9c7-fa11a59d6a14" + "c3a8766e-9b60-4076-b252-75056263a173" ], "request-id": [ - "2bf2660d-d7aa-455b-b9c7-fa11a59d6a14" + "c3a8766e-9b60-4076-b252-75056263a173" ], "elapsed-time": [ - "985" + "1584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14949" + "14964" ], "x-ms-correlation-request-id": [ - "30e45bd8-f8bb-46af-a863-f361e1ed0f6e" + "187bfb2c-8c46-45f2-9156-3e499032385a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025055Z:30e45bd8-f8bb-46af-a863-f361e1ed0f6e" + "NORTHEUROPE:20180719T175519Z:187bfb2c-8c46-45f2-9156-3e499032385a" ], "X-Content-Type-Options": [ "nosniff" @@ -611,13 +611,13 @@ ], "Names": { "GenerateName": [ - "azsmnet7674", - "azsmnet12", - "azsmnet6536", - "azsmnet7192" + "azsmnet5874", + "azsmnet307", + "azsmnet1680", + "azsmnet3096" ], "GenerateServiceName": [ - "azs-8964" + "azs-1024" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsSucceedsOnExistingResource.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsSucceedsOnExistingResource.json index a4ee207f073b..d5e7595d995e 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsSucceedsOnExistingResource.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfExistsSucceedsOnExistingResource.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49b5a083-ca3f-4bf0-acd6-ffa12a7bb0ae" + "4c29f822-c4ae-48fb-b9c2-6b6307007ea0" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:24 GMT" + "Thu, 19 Jul 2018 17:46:27 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1110" + "1161" ], "x-ms-request-id": [ - "7af9962a-2634-4862-bc6d-e0ed70b97636" + "d450ec24-ea44-46d8-b5ea-23efbbec0f4a" ], "x-ms-correlation-request-id": [ - "7af9962a-2634-4862-bc6d-e0ed70b97636" + "d450ec24-ea44-46d8-b5ea-23efbbec0f4a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024324Z:7af9962a-2634-4862-bc6d-e0ed70b97636" + "NORTHEUROPE:20180719T174627Z:d450ec24-ea44-46d8-b5ea-23efbbec0f4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6076?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MDc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2057?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMDU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "5890f97a-2258-477f-bc59-cd22eb05fd20" + "20782fbf-aca6-4872-b10b-08a3b00b5458" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076\",\r\n \"name\": \"azsmnet6076\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2057\",\r\n \"name\": \"azsmnet2057\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:24 GMT" + "Thu, 19 Jul 2018 17:46:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1109" + "1160" ], "x-ms-request-id": [ - "987dad5c-ae4e-40a4-98e8-193c999b7aea" + "29f30a11-d071-4225-a302-4a3e05c170d9" ], "x-ms-correlation-request-id": [ - "987dad5c-ae4e-40a4-98e8-193c999b7aea" + "29f30a11-d071-4225-a302-4a3e05c170d9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024325Z:987dad5c-ae4e-40a4-98e8-193c999b7aea" + "NORTHEUROPE:20180719T174628Z:29f30a11-d071-4225-a302-4a3e05c170d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-7693?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjkzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2057/providers/Microsoft.Search/searchServices/azs-9593?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NTkzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "fc995ea5-cdcb-4e26-8e56-676783fffabb" + "3379a279-f109-4951-8339-8ead29420722" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-7693\",\r\n \"name\": \"azs-7693\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2057/providers/Microsoft.Search/searchServices/azs-9593\",\r\n \"name\": \"azs-9593\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:29 GMT" + "Thu, 19 Jul 2018 17:46:34 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A43%3A29.2105152Z'\"" + "W/\"datetime'2018-07-19T17%3A46%3A34.5821217Z'\"" ], "x-ms-request-id": [ - "fc995ea5-cdcb-4e26-8e56-676783fffabb" + "3379a279-f109-4951-8339-8ead29420722" ], "request-id": [ - "fc995ea5-cdcb-4e26-8e56-676783fffabb" + "3379a279-f109-4951-8339-8ead29420722" ], "elapsed-time": [ - "1388" + "1512" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1111" + "1159" ], "x-ms-correlation-request-id": [ - "e5e8abba-3833-4dee-882d-5703a5577eb7" + "9a354555-d7d8-402b-8c4b-fe712c8c0813" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024329Z:e5e8abba-3833-4dee-882d-5703a5577eb7" + "NORTHEUROPE:20180719T174635Z:9a354555-d7d8-402b-8c4b-fe712c8c0813" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-7693/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjkzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2057/providers/Microsoft.Search/searchServices/azs-9593/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NTkzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49e07704-f2be-4d89-a7dc-29aa135c1de2" + "35d32f1c-50a5-46d2-a7fa-d69146098004" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"D87C8812839D5955A102036C88BDDA48\",\r\n \"secondaryKey\": \"91B417C50AFF988540DB4119BC7D2C9C\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"31CAA000FCA91ADA8FC4F745965EBA25\",\r\n \"secondaryKey\": \"D230758E7A5450229C70E26FAB08A0F0\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:31 GMT" + "Thu, 19 Jul 2018 17:46:37 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "49e07704-f2be-4d89-a7dc-29aa135c1de2" + "35d32f1c-50a5-46d2-a7fa-d69146098004" ], "request-id": [ - "49e07704-f2be-4d89-a7dc-29aa135c1de2" + "35d32f1c-50a5-46d2-a7fa-d69146098004" ], "elapsed-time": [ - "103" + "256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1110" + "1158" ], "x-ms-correlation-request-id": [ - "659d9553-892f-4359-a1b6-52f2461480e0" + "276b8e0c-8e7e-4734-828d-8e54be813d51" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024331Z:659d9553-892f-4359-a1b6-52f2461480e0" + "NORTHEUROPE:20180719T174637Z:276b8e0c-8e7e-4734-828d-8e54be813d51" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-7693/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjkzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2057/providers/Microsoft.Search/searchServices/azs-9593/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NTkzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05a23183-0933-4a08-be18-11deb8f3f1b5" + "f8074162-8d97-47e0-8cae-f5d4cb700ee8" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"F311844C1CE1641293EA8E2DC5500272\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BE8468D44B19987616DC68D2D10BE9CE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:31 GMT" + "Thu, 19 Jul 2018 17:46:37 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "05a23183-0933-4a08-be18-11deb8f3f1b5" + "f8074162-8d97-47e0-8cae-f5d4cb700ee8" ], "request-id": [ - "05a23183-0933-4a08-be18-11deb8f3f1b5" + "f8074162-8d97-47e0-8cae-f5d4cb700ee8" ], "elapsed-time": [ - "118" + "249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14990" ], "x-ms-correlation-request-id": [ - "cd734fff-d81a-4f3b-9443-03e41da949d7" + "ee8a9796-1be3-46a5-b6a1-a149630bc5ce" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024332Z:cd734fff-d81a-4f3b-9443-03e41da949d7" + "NORTHEUROPE:20180719T174638Z:ee8a9796-1be3-46a5-b6a1-a149630bc5ce" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet791\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet1540\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1883" + "2350" ], "client-request-id": [ - "c75c9035-0e26-4054-9dd1-051e36ac164d" + "c0cf3b19-9f82-4818-a880-b84bd2e807f1" ], "accept-language": [ "en-US" ], "api-key": [ - "D87C8812839D5955A102036C88BDDA48" + "31CAA000FCA91ADA8FC4F745965EBA25" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7693.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E8FDB56150\\\"\",\r\n \"name\": \"azsmnet791\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9593.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9F9570FFCB\\\"\",\r\n \"name\": \"azsmnet1540\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2085" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:33 GMT" + "Thu, 19 Jul 2018 17:46:40 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E8FDB56150\"" + "W/\"0x8D5ED9F9570FFCB\"" ], "Location": [ - "https://azs-7693.search-dogfood.windows-int.net/indexes('azsmnet791')?api-version=2017-11-11-Preview" + "https://azs-9593.search-dogfood.windows-int.net/indexes('azsmnet1540')?api-version=2017-11-11-Preview" ], "request-id": [ - "c75c9035-0e26-4054-9dd1-051e36ac164d" + "c0cf3b19-9f82-4818-a880-b84bd2e807f1" ], "elapsed-time": [ - "1525" + "924" ], "OData-Version": [ "4.0" @@ -408,32 +408,32 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet629\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet2989\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "320" + "321" ], "client-request-id": [ - "b878590f-29fe-4737-be7a-daaebd40cdad" + "1bb5c86d-3015-4ef4-983c-21bbb51983a3" ], "accept-language": [ "en-US" ], "api-key": [ - "D87C8812839D5955A102036C88BDDA48" + "31CAA000FCA91ADA8FC4F745965EBA25" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7693.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E8FDC25CC9\\\"\",\r\n \"name\": \"azsmnet629\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9593.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9F9586FE27\\\"\",\r\n \"name\": \"azsmnet2989\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "526" + "527" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:33 GMT" + "Thu, 19 Jul 2018 17:46:40 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E8FDC25CC9\"" + "W/\"0x8D5ED9F9586FE27\"" ], "Location": [ - "https://azs-7693.search-dogfood.windows-int.net/datasources('azsmnet629')?api-version=2017-11-11-Preview" + "https://azs-9593.search-dogfood.windows-int.net/datasources('azsmnet2989')?api-version=2017-11-11-Preview" ], "request-id": [ - "b878590f-29fe-4737-be7a-daaebd40cdad" + "1bb5c86d-3015-4ef4-983c-21bbb51983a3" ], "elapsed-time": [ - "48" + "46" ], "OData-Version": [ "4.0" @@ -475,19 +475,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8894')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODg5NCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet7113')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzExMycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8894\",\r\n \"dataSourceName\": \"azsmnet629\",\r\n \"targetIndexName\": \"azsmnet791\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7113\",\r\n \"dataSourceName\": \"azsmnet2989\",\r\n \"targetIndexName\": \"azsmnet1540\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1125" + "1127" ], "client-request-id": [ - "8f59cc2a-ed78-4908-8f32-f1645580e6cb" + "e9313dba-4dc9-499b-a021-25dd2649fc70" ], "Prefer": [ "return=representation" @@ -496,17 +496,17 @@ "en-US" ], "api-key": [ - "D87C8812839D5955A102036C88BDDA48" + "31CAA000FCA91ADA8FC4F745965EBA25" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7693.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E8FFFB4C54\\\"\",\r\n \"name\": \"azsmnet8894\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet629\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet791\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9593.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9F96BBAA79\\\"\",\r\n \"name\": \"azsmnet7113\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet2989\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1540\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1109" + "1111" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -518,22 +518,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:38 GMT" + "Thu, 19 Jul 2018 17:46:42 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E8FFFB4C54\"" + "W/\"0x8D5ED9F96BBAA79\"" ], "Location": [ - "https://azs-7693.search-dogfood.windows-int.net/indexers('azsmnet8894')?api-version=2017-11-11-Preview" + "https://azs-9593.search-dogfood.windows-int.net/indexers('azsmnet7113')?api-version=2017-11-11-Preview" ], "request-id": [ - "8f59cc2a-ed78-4908-8f32-f1645580e6cb" + "e9313dba-4dc9-499b-a021-25dd2649fc70" ], "elapsed-time": [ - "2945" + "960" ], "OData-Version": [ "4.0" @@ -548,19 +548,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet8894')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0ODg5NCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet7113')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NzExMycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet8894\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet629\",\r\n \"targetIndexName\": \"azsmnet791\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"@odata.etag\": \"\\\"0x8D5B6E8FFFB4C54\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet7113\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet2989\",\r\n \"targetIndexName\": \"azsmnet1540\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D5ED9F96BBAA79\\\"\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1252" + "1284" ], "client-request-id": [ - "27b2a86d-2444-43c0-adbb-4e0aba892846" + "1ab928ca-edc0-43b3-9d32-6584582b1dcc" ], "Prefer": [ "return=representation" @@ -572,14 +572,14 @@ "*" ], "api-key": [ - "D87C8812839D5955A102036C88BDDA48" + "31CAA000FCA91ADA8FC4F745965EBA25" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7693.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9009DCEB9\\\"\",\r\n \"name\": \"azsmnet8894\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet629\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet791\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9593.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9F96EB9FB1\\\"\",\r\n \"name\": \"azsmnet7113\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet2989\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1540\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -591,22 +591,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:38 GMT" + "Thu, 19 Jul 2018 17:46:42 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9009DCEB9\"" + "W/\"0x8D5ED9F96EB9FB1\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "27b2a86d-2444-43c0-adbb-4e0aba892846" + "1ab928ca-edc0-43b3-9d32-6584582b1dcc" ], "elapsed-time": [ - "697" + "153" ], "OData-Version": [ "4.0" @@ -621,13 +621,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6076/providers/Microsoft.Search/searchServices/azs-7693?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjkzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2057/providers/Microsoft.Search/searchServices/azs-9593?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NTkzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fc71b2b-f450-41ec-9c8f-99f51460bdef" + "b49e19fd-c234-447a-a7f2-daeeb33a04a1" ], "accept-language": [ "en-US" @@ -649,31 +649,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:43:42 GMT" + "Thu, 19 Jul 2018 17:46:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6fc71b2b-f450-41ec-9c8f-99f51460bdef" + "b49e19fd-c234-447a-a7f2-daeeb33a04a1" ], "request-id": [ - "6fc71b2b-f450-41ec-9c8f-99f51460bdef" + "b49e19fd-c234-447a-a7f2-daeeb33a04a1" ], "elapsed-time": [ - "723" + "1087" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14949" + "14971" ], "x-ms-correlation-request-id": [ - "5384a464-82fb-46b0-8cda-882ae7efde69" + "665df1ad-659b-49b9-bd16-5bb2eaf64d14" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024343Z:5384a464-82fb-46b0-8cda-882ae7efde69" + "NORTHEUROPE:20180719T174647Z:665df1ad-659b-49b9-bd16-5bb2eaf64d14" ], "X-Content-Type-Options": [ "nosniff" @@ -684,13 +684,13 @@ ], "Names": { "GenerateName": [ - "azsmnet6076", - "azsmnet791", - "azsmnet629", - "azsmnet8894" + "azsmnet2057", + "azsmnet1540", + "azsmnet2989", + "azsmnet7113" ], "GenerateServiceName": [ - "azs-7693" + "azs-9593" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedFailsWhenResourceChanged.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedFailsWhenResourceChanged.json index 9bb2c8b8df50..d523018e074a 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedFailsWhenResourceChanged.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedFailsWhenResourceChanged.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4436df80-5193-4851-bc96-6e2b5785c890" + "2f6802b0-c67b-453b-8461-34f17fe26e29" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:19 GMT" + "Thu, 19 Jul 2018 17:54:33 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1089" + "1134" ], "x-ms-request-id": [ - "c12bdd9f-9575-41c4-a1ed-7208b05276e4" + "9f3c8468-8411-4109-a9ca-e78f206827c7" ], "x-ms-correlation-request-id": [ - "c12bdd9f-9575-41c4-a1ed-7208b05276e4" + "9f3c8468-8411-4109-a9ca-e78f206827c7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025019Z:c12bdd9f-9575-41c4-a1ed-7208b05276e4" + "NORTHEUROPE:20180719T175433Z:9f3c8468-8411-4109-a9ca-e78f206827c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2140?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMTQwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9472?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDcyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "c28b79a0-2d97-439e-a753-7f7057e2b963" + "6e4bc344-57df-4b68-a211-baf5d4a7f8e2" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2140\",\r\n \"name\": \"azsmnet2140\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9472\",\r\n \"name\": \"azsmnet9472\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:19 GMT" + "Thu, 19 Jul 2018 17:54:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1088" + "1133" ], "x-ms-request-id": [ - "efbbef10-132d-4b80-8624-143521e90bf1" + "d0bcdd76-8526-439c-9e92-08606e7fc13e" ], "x-ms-correlation-request-id": [ - "efbbef10-132d-4b80-8624-143521e90bf1" + "d0bcdd76-8526-439c-9e92-08606e7fc13e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025019Z:efbbef10-132d-4b80-8624-143521e90bf1" + "NORTHEUROPE:20180719T175434Z:d0bcdd76-8526-439c-9e92-08606e7fc13e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2140/providers/Microsoft.Search/searchServices/azs-7278?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mjc4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9472/providers/Microsoft.Search/searchServices/azs-7514?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTE0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "b7a46213-39e8-49a7-8bdf-e42f038a8a28" + "941bb823-e77b-405f-bb29-e0bac77f81fe" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2140/providers/Microsoft.Search/searchServices/azs-7278\",\r\n \"name\": \"azs-7278\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9472/providers/Microsoft.Search/searchServices/azs-7514\",\r\n \"name\": \"azs-7514\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:23 GMT" + "Thu, 19 Jul 2018 17:54:37 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A50%3A23.6826819Z'\"" + "W/\"datetime'2018-07-19T17%3A54%3A37.4132894Z'\"" ], "x-ms-request-id": [ - "b7a46213-39e8-49a7-8bdf-e42f038a8a28" + "941bb823-e77b-405f-bb29-e0bac77f81fe" ], "request-id": [ - "b7a46213-39e8-49a7-8bdf-e42f038a8a28" + "941bb823-e77b-405f-bb29-e0bac77f81fe" ], "elapsed-time": [ - "1602" + "1179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1102" + "1134" ], "x-ms-correlation-request-id": [ - "788c874e-649c-4fa9-ad9f-2bbbcf2e67f1" + "c9cffffd-e883-40ab-8813-74664512034e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025024Z:788c874e-649c-4fa9-ad9f-2bbbcf2e67f1" + "NORTHEUROPE:20180719T175438Z:c9cffffd-e883-40ab-8813-74664512034e" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2140/providers/Microsoft.Search/searchServices/azs-7278/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mjc4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9472/providers/Microsoft.Search/searchServices/azs-7514/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTE0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b19d7f82-41e0-4ee7-a503-ee8d37b7791d" + "0d04109c-bd3d-418e-a5c8-a696b6c7eaa6" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"931AB53CD39CC27BFE8104CBB6DF9327\",\r\n \"secondaryKey\": \"C1B9F88FB7C32DCF20A7EDF6309FB665\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"594E2C0EAE960277809E65F2A93343DD\",\r\n \"secondaryKey\": \"F102C6C09FFAFF1D10446CF136663B90\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:25 GMT" + "Thu, 19 Jul 2018 17:54:39 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b19d7f82-41e0-4ee7-a503-ee8d37b7791d" + "0d04109c-bd3d-418e-a5c8-a696b6c7eaa6" ], "request-id": [ - "b19d7f82-41e0-4ee7-a503-ee8d37b7791d" + "0d04109c-bd3d-418e-a5c8-a696b6c7eaa6" ], "elapsed-time": [ - "311" + "216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1101" + "1133" ], "x-ms-correlation-request-id": [ - "954882f3-e726-45ef-ba24-c4851629db42" + "46f931ef-9b08-4235-9eb0-f337b0e169ff" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025026Z:954882f3-e726-45ef-ba24-c4851629db42" + "NORTHEUROPE:20180719T175439Z:46f931ef-9b08-4235-9eb0-f337b0e169ff" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2140/providers/Microsoft.Search/searchServices/azs-7278/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mjc4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9472/providers/Microsoft.Search/searchServices/azs-7514/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTE0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed12636d-a676-459b-897c-739b20f43505" + "c298fb27-2f2c-47c9-bada-036588267026" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"0C10BF7E5BC2E3B7905F132D1B4EF024\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"826B2D2A1A3260DF00AC1EF01764E359\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:26 GMT" + "Thu, 19 Jul 2018 17:54:40 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ed12636d-a676-459b-897c-739b20f43505" + "c298fb27-2f2c-47c9-bada-036588267026" ], "request-id": [ - "ed12636d-a676-459b-897c-739b20f43505" + "c298fb27-2f2c-47c9-bada-036588267026" ], "elapsed-time": [ - "239" + "366" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14981" ], "x-ms-correlation-request-id": [ - "7e0d0c36-b834-452e-9a61-067a68631674" + "2910a392-7d94-483e-901c-a508bac3bb34" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025026Z:7e0d0c36-b834-452e-9a61-067a68631674" + "NORTHEUROPE:20180719T175440Z:2910a392-7d94-483e-901c-a508bac3bb34" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1657\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8692\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2350" ], "client-request-id": [ - "fb777efd-b123-48aa-bb1e-11217719d651" + "e722e874-4aa8-4db2-a656-eae6656385e9" ], "accept-language": [ "en-US" ], "api-key": [ - "931AB53CD39CC27BFE8104CBB6DF9327" + "594E2C0EAE960277809E65F2A93343DD" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7278.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9F4D888DA\\\"\",\r\n \"name\": \"azsmnet1657\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7514.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0B4E62906\\\"\",\r\n \"name\": \"azsmnet8692\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2536" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:27 GMT" + "Thu, 19 Jul 2018 17:54:42 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9F4D888DA\"" + "W/\"0x8D5EDA0B4E62906\"" ], "Location": [ - "https://azs-7278.search-dogfood.windows-int.net/indexes('azsmnet1657')?api-version=2017-11-11-Preview" + "https://azs-7514.search-dogfood.windows-int.net/indexes('azsmnet8692')?api-version=2017-11-11-Preview" ], "request-id": [ - "fb777efd-b123-48aa-bb1e-11217719d651" + "e722e874-4aa8-4db2-a656-eae6656385e9" ], "elapsed-time": [ - "1445" + "1042" ], "OData-Version": [ "4.0" @@ -408,7 +408,7 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet7761\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet8854\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,20 +417,20 @@ "321" ], "client-request-id": [ - "c2b8357f-6ec3-48ac-9aab-d7ef75f05b29" + "b23d284e-c4dd-48fc-8f47-290eab1c09ad" ], "accept-language": [ "en-US" ], "api-key": [ - "931AB53CD39CC27BFE8104CBB6DF9327" + "594E2C0EAE960277809E65F2A93343DD" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7278.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9F4E55D3C\\\"\",\r\n \"name\": \"azsmnet7761\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7514.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0B4FA03F0\\\"\",\r\n \"name\": \"azsmnet8854\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "527" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:27 GMT" + "Thu, 19 Jul 2018 17:54:42 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9F4E55D3C\"" + "W/\"0x8D5EDA0B4FA03F0\"" ], "Location": [ - "https://azs-7278.search-dogfood.windows-int.net/datasources('azsmnet7761')?api-version=2017-11-11-Preview" + "https://azs-7514.search-dogfood.windows-int.net/datasources('azsmnet8854')?api-version=2017-11-11-Preview" ], "request-id": [ - "c2b8357f-6ec3-48ac-9aab-d7ef75f05b29" + "b23d284e-c4dd-48fc-8f47-290eab1c09ad" ], "elapsed-time": [ - "59" + "45" ], "OData-Version": [ "4.0" @@ -475,10 +475,10 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet5770')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NTc3MCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet4926')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDkyNicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet5770\",\r\n \"dataSourceName\": \"azsmnet7761\",\r\n \"targetIndexName\": \"azsmnet1657\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4926\",\r\n \"dataSourceName\": \"azsmnet8854\",\r\n \"targetIndexName\": \"azsmnet8692\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -487,7 +487,7 @@ "1127" ], "client-request-id": [ - "7d1344bf-a162-4dc7-8cc7-fa57127f0146" + "ba6e38e1-2ce9-49ce-bcc6-f56d6200a2fc" ], "Prefer": [ "return=representation" @@ -496,14 +496,14 @@ "en-US" ], "api-key": [ - "931AB53CD39CC27BFE8104CBB6DF9327" + "594E2C0EAE960277809E65F2A93343DD" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7278.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9F5FC1AC7\\\"\",\r\n \"name\": \"azsmnet5770\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet7761\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1657\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7514.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0B5C7E60C\\\"\",\r\n \"name\": \"azsmnet4926\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet8854\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8692\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1111" @@ -518,22 +518,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:30 GMT" + "Thu, 19 Jul 2018 17:54:44 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9F5FC1AC7\"" + "W/\"0x8D5EDA0B5C7E60C\"" ], "Location": [ - "https://azs-7278.search-dogfood.windows-int.net/indexers('azsmnet5770')?api-version=2017-11-11-Preview" + "https://azs-7514.search-dogfood.windows-int.net/indexers('azsmnet4926')?api-version=2017-11-11-Preview" ], "request-id": [ - "7d1344bf-a162-4dc7-8cc7-fa57127f0146" + "ba6e38e1-2ce9-49ce-bcc6-f56d6200a2fc" ], "elapsed-time": [ - "815" + "355" ], "OData-Version": [ "4.0" @@ -548,19 +548,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet5770')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NTc3MCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet4926')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDkyNicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet5770\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7761\",\r\n \"targetIndexName\": \"azsmnet1657\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"@odata.etag\": \"\\\"0x8D5B6E9F5FC1AC7\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4926\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet8854\",\r\n \"targetIndexName\": \"azsmnet8692\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D5EDA0B5C7E60C\\\"\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1254" + "1284" ], "client-request-id": [ - "f8dee8eb-afec-4ce9-92ac-fecd43134ef5" + "807fea75-6f9c-4c4b-b55a-5414ce3d93b0" ], "Prefer": [ "return=representation" @@ -569,14 +569,14 @@ "en-US" ], "api-key": [ - "931AB53CD39CC27BFE8104CBB6DF9327" + "594E2C0EAE960277809E65F2A93343DD" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7278.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E9F62270DF\\\"\",\r\n \"name\": \"azsmnet5770\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7761\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet1657\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7514.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0B607E4B7\\\"\",\r\n \"name\": \"azsmnet4926\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet8854\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet8692\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -588,22 +588,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:30 GMT" + "Thu, 19 Jul 2018 17:54:44 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E9F62270DF\"" + "W/\"0x8D5EDA0B607E4B7\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "f8dee8eb-afec-4ce9-92ac-fecd43134ef5" + "807fea75-6f9c-4c4b-b55a-5414ce3d93b0" ], "elapsed-time": [ - "124" + "201" ], "OData-Version": [ "4.0" @@ -618,19 +618,19 @@ "StatusCode": 200 }, { - "RequestUri": "/indexers('azsmnet5770')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NTc3MCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet4926')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0NDkyNicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet5770\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet7761\",\r\n \"targetIndexName\": \"azsmnet1657\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"@odata.etag\": \"\\\"0x8D5B6E9F62270DF\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4926\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet8854\",\r\n \"targetIndexName\": \"azsmnet8692\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D5EDA0B607E4B7\\\"\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1254" + "1284" ], "client-request-id": [ - "2f12dc92-dada-46a2-876f-cc6954f076a7" + "cc39cbef-2976-4e87-8728-64268d0dbeb1" ], "Prefer": [ "return=representation" @@ -639,10 +639,10 @@ "en-US" ], "If-Match": [ - "\"0x8D5B6E9F5FC1AC7\"" + "\"0x8D5EDA0B5C7E60C\"" ], "api-key": [ - "931AB53CD39CC27BFE8104CBB6DF9327" + "594E2C0EAE960277809E65F2A93343DD" ], "User-Agent": [ "FxVersion/4.6.25211.01", @@ -667,13 +667,13 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:30 GMT" + "Thu, 19 Jul 2018 17:54:44 GMT" ], "Pragma": [ "no-cache" ], "request-id": [ - "2f12dc92-dada-46a2-876f-cc6954f076a7" + "cc39cbef-2976-4e87-8728-64268d0dbeb1" ], "elapsed-time": [ "8" @@ -691,13 +691,13 @@ "StatusCode": 412 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2140/providers/Microsoft.Search/searchServices/azs-7278?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTQwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mjc4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9472/providers/Microsoft.Search/searchServices/azs-7514?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDcyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTE0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2e344aa-0aa6-475f-a292-5280276451c5" + "e0f490ff-2043-42a8-8955-b43ab6196974" ], "accept-language": [ "en-US" @@ -719,31 +719,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:50:35 GMT" + "Thu, 19 Jul 2018 17:54:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f2e344aa-0aa6-475f-a292-5280276451c5" + "e0f490ff-2043-42a8-8955-b43ab6196974" ], "request-id": [ - "f2e344aa-0aa6-475f-a292-5280276451c5" + "e0f490ff-2043-42a8-8955-b43ab6196974" ], "elapsed-time": [ - "2221" + "7984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14950" + "14967" ], "x-ms-correlation-request-id": [ - "3bb33f57-df0b-4d54-9043-495c80da198b" + "a6f02ba5-91fc-4600-94d1-326d79557ead" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T025036Z:3bb33f57-df0b-4d54-9043-495c80da198b" + "NORTHEUROPE:20180719T175456Z:a6f02ba5-91fc-4600-94d1-326d79557ead" ], "X-Content-Type-Options": [ "nosniff" @@ -754,13 +754,13 @@ ], "Names": { "GenerateName": [ - "azsmnet2140", - "azsmnet1657", - "azsmnet7761", - "azsmnet5770" + "azsmnet9472", + "azsmnet8692", + "azsmnet8854", + "azsmnet4926" ], "GenerateServiceName": [ - "azs-7278" + "azs-7514" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json index c21e5a0afc8d..264f32994284 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexerTests/UpdateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7c78a4b-a0d8-4482-bf64-e656611819b7" + "3a412532-66be-40f3-8d17-0e2152c87b6f" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:51 GMT" + "Thu, 19 Jul 2018 17:51:41 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1113" + "1148" ], "x-ms-request-id": [ - "5a767afb-a645-402b-876b-1ae9a8c6c10f" + "3d0d4848-9ac6-4a3d-a047-433bef51a816" ], "x-ms-correlation-request-id": [ - "5a767afb-a645-402b-876b-1ae9a8c6c10f" + "3d0d4848-9ac6-4a3d-a047-433bef51a816" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024752Z:5a767afb-a645-402b-876b-1ae9a8c6c10f" + "NORTHEUROPE:20180719T175141Z:3d0d4848-9ac6-4a3d-a047-433bef51a816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,8 +62,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7676?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3Njc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5924?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1OTI0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -74,7 +74,7 @@ "29" ], "x-ms-client-request-id": [ - "e5372590-8fc1-4f2b-9933-f74dbf1002b8" + "e1b38813-0f21-4e6b-9451-7bc41a4cbbc7" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7676\",\r\n \"name\": \"azsmnet7676\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5924\",\r\n \"name\": \"azsmnet5924\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -99,22 +99,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:51 GMT" + "Thu, 19 Jul 2018 17:51:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1112" + "1147" ], "x-ms-request-id": [ - "7c1c4971-d8c2-497b-8d60-821816bb7ee5" + "61a692d7-319d-4df9-8948-befacf6763eb" ], "x-ms-correlation-request-id": [ - "7c1c4971-d8c2-497b-8d60-821816bb7ee5" + "61a692d7-319d-4df9-8948-befacf6763eb" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024752Z:7c1c4971-d8c2-497b-8d60-821816bb7ee5" + "NORTHEUROPE:20180719T175143Z:61a692d7-319d-4df9-8948-befacf6763eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -126,8 +126,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7676/providers/Microsoft.Search/searchServices/azs-2833?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODMzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5924/providers/Microsoft.Search/searchServices/azs-2874?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1OTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODc0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -138,7 +138,7 @@ "67" ], "x-ms-client-request-id": [ - "2cc6c5a5-d501-4327-a637-653f83f53f30" + "8c887a45-4224-44c5-97ee-9e959cf717e7" ], "accept-language": [ "en-US" @@ -148,7 +148,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7676/providers/Microsoft.Search/searchServices/azs-2833\",\r\n \"name\": \"azs-2833\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5924/providers/Microsoft.Search/searchServices/azs-2874\",\r\n \"name\": \"azs-2874\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -163,34 +163,34 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:56 GMT" + "Thu, 19 Jul 2018 17:51:47 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2018-05-11T02%3A47%3A56.2134098Z'\"" + "W/\"datetime'2018-07-19T17%3A51%3A47.6167029Z'\"" ], "x-ms-request-id": [ - "2cc6c5a5-d501-4327-a637-653f83f53f30" + "8c887a45-4224-44c5-97ee-9e959cf717e7" ], "request-id": [ - "2cc6c5a5-d501-4327-a637-653f83f53f30" + "8c887a45-4224-44c5-97ee-9e959cf717e7" ], "elapsed-time": [ - "1238" + "1048" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1111" + "1146" ], "x-ms-correlation-request-id": [ - "2b4c9eab-5733-49f1-bc09-a6e6a3a462a5" + "14a95ad7-fd8d-43bc-bae8-a638893180de" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024756Z:2b4c9eab-5733-49f1-bc09-a6e6a3a462a5" + "NORTHEUROPE:20180719T175148Z:14a95ad7-fd8d-43bc-bae8-a638893180de" ], "X-Content-Type-Options": [ "nosniff" @@ -199,13 +199,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7676/providers/Microsoft.Search/searchServices/azs-2833/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODMzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5924/providers/Microsoft.Search/searchServices/azs-2874/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1OTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODc0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae1013e2-99c3-49a0-beb8-6a623ef86d02" + "4fc1852d-87fd-429c-a859-fb01c9afb9d3" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"5918A04C6C4C4173B2E6F1ABFDB31294\",\r\n \"secondaryKey\": \"471F256CF4E65D242D8DC0E749CDB646\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"90509D2C42442F7E8600C4E65A6FC4CA\",\r\n \"secondaryKey\": \"8CAD55D5E1772C65D80C62A86AC07E43\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:59 GMT" + "Thu, 19 Jul 2018 17:51:49 GMT" ], "Pragma": [ "no-cache" @@ -240,25 +240,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ae1013e2-99c3-49a0-beb8-6a623ef86d02" + "4fc1852d-87fd-429c-a859-fb01c9afb9d3" ], "request-id": [ - "ae1013e2-99c3-49a0-beb8-6a623ef86d02" + "4fc1852d-87fd-429c-a859-fb01c9afb9d3" ], "elapsed-time": [ - "158" + "196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1110" + "1145" ], "x-ms-correlation-request-id": [ - "11d4e9df-6d48-49f9-a752-5b205b554d38" + "820ed92a-746d-4814-92c0-3117fee7de7d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024759Z:11d4e9df-6d48-49f9-a752-5b205b554d38" + "NORTHEUROPE:20180719T175150Z:820ed92a-746d-4814-92c0-3117fee7de7d" ], "X-Content-Type-Options": [ "nosniff" @@ -267,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7676/providers/Microsoft.Search/searchServices/azs-2833/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODMzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5924/providers/Microsoft.Search/searchServices/azs-2874/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1OTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODc0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb0b76e2-155d-47e9-b0f5-22387df3942c" + "51b1879d-5fb0-4b52-9b56-b5c7e6c39dd1" ], "accept-language": [ "en-US" @@ -283,7 +283,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"68898FFDA98C90A946929C0D8321AAA3\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"F0FB3C8CFF4733ACA065986FF773F267\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +295,7 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:47:59 GMT" + "Thu, 19 Jul 2018 17:51:49 GMT" ], "Pragma": [ "no-cache" @@ -308,25 +308,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eb0b76e2-155d-47e9-b0f5-22387df3942c" + "51b1879d-5fb0-4b52-9b56-b5c7e6c39dd1" ], "request-id": [ - "eb0b76e2-155d-47e9-b0f5-22387df3942c" + "51b1879d-5fb0-4b52-9b56-b5c7e6c39dd1" ], "elapsed-time": [ - "129" + "217" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14989" ], "x-ms-correlation-request-id": [ - "0feb0aa3-6d9a-4c7f-b175-8976547d76ae" + "fe0a862d-b56d-40c5-86a7-f678ff5dc434" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024759Z:0feb0aa3-6d9a-4c7f-b175-8976547d76ae" + "NORTHEUROPE:20180719T175150Z:fe0a862d-b56d-40c5-86a7-f678ff5dc434" ], "X-Content-Type-Options": [ "nosniff" @@ -338,32 +338,32 @@ "RequestUri": "/indexes?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet4218\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet858\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1884" + "2349" ], "client-request-id": [ - "f5c0631d-72c7-47a2-939c-2a4bdd7c58f9" + "6b5afb00-a9ea-4154-85d2-3ce8c8df9c29" ], "accept-language": [ "en-US" ], "api-key": [ - "5918A04C6C4C4173B2E6F1ABFDB31294" + "90509D2C42442F7E8600C4E65A6FC4CA" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2833.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E99D258003\\\"\",\r\n \"name\": \"azsmnet4218\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2874.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA04F844AFD\\\"\",\r\n \"name\": \"azsmnet858\",\r\n \"fields\": [\r\n {\r\n \"name\": \"feature_id\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"feature_class\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"state\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"county_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"elevation\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"map_name\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"history\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myEntities\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n },\r\n {\r\n \"name\": \"myText\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null,\r\n \"synonymMaps\": []\r\n }\r\n ],\r\n \"scoringProfiles\": [],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "2086" + "2535" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,22 +375,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:00 GMT" + "Thu, 19 Jul 2018 17:51:52 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E99D258003\"" + "W/\"0x8D5EDA04F844AFD\"" ], "Location": [ - "https://azs-2833.search-dogfood.windows-int.net/indexes('azsmnet4218')?api-version=2017-11-11-Preview" + "https://azs-2874.search-dogfood.windows-int.net/indexes('azsmnet858')?api-version=2017-11-11-Preview" ], "request-id": [ - "f5c0631d-72c7-47a2-939c-2a4bdd7c58f9" + "6b5afb00-a9ea-4154-85d2-3ce8c8df9c29" ], "elapsed-time": [ - "1433" + "864" ], "OData-Version": [ "4.0" @@ -408,32 +408,32 @@ "RequestUri": "/datasources?api-version=2017-11-11-Preview", "EncodedRequestUri": "L2RhdGFzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet568\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet4031\",\r\n \"type\": \"azuresql\",\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "320" + "321" ], "client-request-id": [ - "d1e55347-da4f-4d7b-b9c6-c2747e896f10" + "00501bc0-ce37-48c0-9781-f0c18b96a7a5" ], "accept-language": [ "en-US" ], "api-key": [ - "5918A04C6C4C4173B2E6F1ABFDB31294" + "90509D2C42442F7E8600C4E65A6FC4CA" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2833.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E99D3317E3\\\"\",\r\n \"name\": \"azsmnet568\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2874.search-dogfood.windows-int.net/$metadata#datasources/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA04F931BA7\\\"\",\r\n \"name\": \"azsmnet4031\",\r\n \"description\": null,\r\n \"type\": \"azuresql\",\r\n \"subtype\": null,\r\n \"credentials\": {\r\n \"connectionString\": \"Server=tcp:azs-playground.database.windows.net,1433;Database=usgs;User ID=reader;Password=EdrERBt3j6mZDP;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;\"\r\n },\r\n \"container\": {\r\n \"name\": \"GeoNamesRI\",\r\n \"query\": null\r\n },\r\n \"dataChangeDetectionPolicy\": null,\r\n \"dataDeletionDetectionPolicy\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "526" + "527" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -445,22 +445,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:00 GMT" + "Thu, 19 Jul 2018 17:51:52 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E99D3317E3\"" + "W/\"0x8D5EDA04F931BA7\"" ], "Location": [ - "https://azs-2833.search-dogfood.windows-int.net/datasources('azsmnet568')?api-version=2017-11-11-Preview" + "https://azs-2874.search-dogfood.windows-int.net/datasources('azsmnet4031')?api-version=2017-11-11-Preview" ], "request-id": [ - "d1e55347-da4f-4d7b-b9c6-c2747e896f10" + "00501bc0-ce37-48c0-9781-f0c18b96a7a5" ], "elapsed-time": [ - "46" + "43" ], "OData-Version": [ "4.0" @@ -475,10 +475,10 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet9131')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTEzMScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet6966')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0Njk2NicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet9131\",\r\n \"dataSourceName\": \"azsmnet568\",\r\n \"targetIndexName\": \"azsmnet4218\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6966\",\r\n \"dataSourceName\": \"azsmnet4031\",\r\n \"targetIndexName\": \"azsmnet858\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -487,7 +487,7 @@ "1126" ], "client-request-id": [ - "066e2119-93ba-4213-904f-ae20ce8da72a" + "b9c79104-66f8-4929-a8de-3cd48431aac1" ], "Prefer": [ "return=representation" @@ -496,14 +496,14 @@ "en-US" ], "api-key": [ - "5918A04C6C4C4173B2E6F1ABFDB31294" + "90509D2C42442F7E8600C4E65A6FC4CA" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2833.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E99E3D9D6E\\\"\",\r\n \"name\": \"azsmnet9131\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet568\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4218\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2874.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA0505D2C96\\\"\",\r\n \"name\": \"azsmnet6966\",\r\n \"description\": null,\r\n \"dataSourceName\": \"azsmnet4031\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet858\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "1110" @@ -518,22 +518,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:02 GMT" + "Thu, 19 Jul 2018 17:51:54 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E99E3D9D6E\"" + "W/\"0x8D5EDA0505D2C96\"" ], "Location": [ - "https://azs-2833.search-dogfood.windows-int.net/indexers('azsmnet9131')?api-version=2017-11-11-Preview" + "https://azs-2874.search-dogfood.windows-int.net/indexers('azsmnet6966')?api-version=2017-11-11-Preview" ], "request-id": [ - "066e2119-93ba-4213-904f-ae20ce8da72a" + "b9c79104-66f8-4929-a8de-3cd48431aac1" ], "elapsed-time": [ - "757" + "327" ], "OData-Version": [ "4.0" @@ -548,19 +548,19 @@ "StatusCode": 201 }, { - "RequestUri": "/indexers('azsmnet9131')?api-version=2017-11-11-Preview", - "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0OTEzMScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestUri": "/indexers('azsmnet6966')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L2luZGV4ZXJzKCdhenNtbmV0Njk2NicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"azsmnet9131\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet568\",\r\n \"targetIndexName\": \"azsmnet4218\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"@odata.etag\": \"\\\"0x8D5B6E99E3D9D6E\\\"\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6966\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet4031\",\r\n \"targetIndexName\": \"azsmnet858\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00-08:00\"\r\n },\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\"\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\"\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\"\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\"\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"@odata.etag\": \"\\\"0x8D5EDA0505D2C96\\\"\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1253" + "1283" ], "client-request-id": [ - "20816000-a34d-452e-8b4f-c69899305cf6" + "6c2763e6-0dd2-459d-8132-cab3ad737e5f" ], "Prefer": [ "return=representation" @@ -569,17 +569,17 @@ "en-US" ], "If-Match": [ - "\"0x8D5B6E99E3D9D6E\"" + "\"0x8D5EDA0505D2C96\"" ], "api-key": [ - "5918A04C6C4C4173B2E6F1ABFDB31294" + "90509D2C42442F7E8600C4E65A6FC4CA" ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2833.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5B6E99E668C36\\\"\",\r\n \"name\": \"azsmnet9131\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet568\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet4218\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2874.search-dogfood.windows-int.net/$metadata#indexers/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5EDA050907E0B\\\"\",\r\n \"name\": \"azsmnet6966\",\r\n \"description\": \"Mutated Indexer\",\r\n \"dataSourceName\": \"azsmnet4031\",\r\n \"skillsetName\": null,\r\n \"targetIndexName\": \"azsmnet858\",\r\n \"schedule\": {\r\n \"interval\": \"P1D\",\r\n \"startTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"parameters\": null,\r\n \"fieldMappings\": [\r\n {\r\n \"sourceFieldName\": \"feature_class\",\r\n \"targetFieldName\": \"feature_class\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Encode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"state_alpha\",\r\n \"targetFieldName\": \"state\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"county_name\",\r\n \"targetFieldName\": \"county_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"extractTokenAtPosition\",\r\n \"parameters\": {\r\n \"delimiter\": \" \",\r\n \"position\": 0\r\n }\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"elev_in_m\",\r\n \"targetFieldName\": \"elevation\",\r\n \"mappingFunction\": null\r\n },\r\n {\r\n \"sourceFieldName\": \"map_name\",\r\n \"targetFieldName\": \"map_name\",\r\n \"mappingFunction\": {\r\n \"name\": \"base64Decode\",\r\n \"parameters\": null\r\n }\r\n },\r\n {\r\n \"sourceFieldName\": \"history\",\r\n \"targetFieldName\": \"history\",\r\n \"mappingFunction\": {\r\n \"name\": \"jsonArrayToStringCollection\",\r\n \"parameters\": null\r\n }\r\n }\r\n ],\r\n \"outputFieldMappings\": [],\r\n \"disabled\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -591,22 +591,22 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:02 GMT" + "Thu, 19 Jul 2018 17:51:54 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D5B6E99E668C36\"" + "W/\"0x8D5EDA050907E0B\"" ], "Vary": [ "Accept-Encoding" ], "request-id": [ - "20816000-a34d-452e-8b4f-c69899305cf6" + "6c2763e6-0dd2-459d-8132-cab3ad737e5f" ], "elapsed-time": [ - "164" + "207" ], "OData-Version": [ "4.0" @@ -621,13 +621,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7676/providers/Microsoft.Search/searchServices/azs-2833?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3Njc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODMzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5924/providers/Microsoft.Search/searchServices/azs-2874?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1OTI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODc0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a423406-487c-4809-b952-2606b96369a6" + "f57b2d83-0644-4f1b-baf8-4dc62fcc54d7" ], "accept-language": [ "en-US" @@ -649,31 +649,31 @@ "no-cache" ], "Date": [ - "Fri, 11 May 2018 02:48:07 GMT" + "Thu, 19 Jul 2018 17:51:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9a423406-487c-4809-b952-2606b96369a6" + "f57b2d83-0644-4f1b-baf8-4dc62fcc54d7" ], "request-id": [ - "9a423406-487c-4809-b952-2606b96369a6" + "f57b2d83-0644-4f1b-baf8-4dc62fcc54d7" ], "elapsed-time": [ - "810" + "721" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14950" + "14971" ], "x-ms-correlation-request-id": [ - "95ec832d-91f5-4ac4-b3f1-381e4f139a6f" + "23bdd565-6c62-49ef-a1b8-902ef6f4e7a5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20180511T024807Z:95ec832d-91f5-4ac4-b3f1-381e4f139a6f" + "NORTHEUROPE:20180719T175158Z:23bdd565-6c62-49ef-a1b8-902ef6f4e7a5" ], "X-Content-Type-Options": [ "nosniff" @@ -684,13 +684,13 @@ ], "Names": { "GenerateName": [ - "azsmnet7676", - "azsmnet4218", - "azsmnet568", - "azsmnet9131" + "azsmnet5924", + "azsmnet858", + "azsmnet4031", + "azsmnet6966" ], "GenerateServiceName": [ - "azs-2833" + "azs-2874" ] }, "Variables": { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateCreatesWhenSkillsetDoesNotExist.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateCreatesWhenSkillsetDoesNotExist.json new file mode 100644 index 000000000000..54af4ef8f0a0 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateCreatesWhenSkillsetDoesNotExist.json @@ -0,0 +1,484 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f395f419-0115-48fd-b4d0-973da4b009b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-request-id": [ + "c93de15c-5b98-458d-ba6a-aa10907d4e78" + ], + "x-ms-correlation-request-id": [ + "c93de15c-5b98-458d-ba6a-aa10907d4e78" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173443Z:c93de15c-5b98-458d-ba6a-aa10907d4e78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9088?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MDg4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "aafbfb3c-7b4a-43d2-95fd-ed4b7ebd6497" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9088\",\r\n \"name\": \"azsmnet9088\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-request-id": [ + "27ad8240-cd78-40ac-bca5-bc915e87c450" + ], + "x-ms-correlation-request-id": [ + "27ad8240-cd78-40ac-bca5-bc915e87c450" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173444Z:27ad8240-cd78-40ac-bca5-bc915e87c450" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9088/providers/Microsoft.Search/searchServices/azs-1437?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNDM3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "8f86a3ac-04ae-4b65-8b46-42018fcc440d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9088/providers/Microsoft.Search/searchServices/azs-1437\",\r\n \"name\": \"azs-1437\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A34%3A48.0432305Z'\"" + ], + "x-ms-request-id": [ + "8f86a3ac-04ae-4b65-8b46-42018fcc440d" + ], + "request-id": [ + "8f86a3ac-04ae-4b65-8b46-42018fcc440d" + ], + "elapsed-time": [ + "1022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1169" + ], + "x-ms-correlation-request-id": [ + "7bc13f2e-e388-42a1-a7ea-829edda03bc9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173448Z:7bc13f2e-e388-42a1-a7ea-829edda03bc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9088/providers/Microsoft.Search/searchServices/azs-1437/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNDM3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1da838c5-b4ea-43e1-96bc-5fad0898dd5e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"5FD4BF3ED9DFEAD21C5AD3B39E5C4A06\",\r\n \"secondaryKey\": \"197D4419C617A72AF6F279157C048448\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1da838c5-b4ea-43e1-96bc-5fad0898dd5e" + ], + "request-id": [ + "1da838c5-b4ea-43e1-96bc-5fad0898dd5e" + ], + "elapsed-time": [ + "186" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1167" + ], + "x-ms-correlation-request-id": [ + "fb91e168-b05c-489b-861f-fde2074ff7ac" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173450Z:fb91e168-b05c-489b-861f-fde2074ff7ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9088/providers/Microsoft.Search/searchServices/azs-1437/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNDM3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf5151e6-a85d-47de-8e99-09616afa7301" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"6866A85C64CFB5A3ECF386ADF1393077\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bf5151e6-a85d-47de-8e99-09616afa7301" + ], + "request-id": [ + "bf5151e6-a85d-47de-8e99-09616afa7301" + ], + "elapsed-time": [ + "271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "3a0821b4-1898-4c8c-a64e-900c75635c5e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173451Z:3a0821b4-1898-4c8c-a64e-900c75635c5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('azsmnet2014')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDIwMTQnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"azsmnet2014\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "687" + ], + "client-request-id": [ + "51abb153-aaaa-431c-929a-d89863faef73" + ], + "Prefer": [ + "return=representation" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "5FD4BF3ED9DFEAD21C5AD3B39E5C4A06" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1437.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9DEF52003E\\\"\",\r\n \"name\": \"azsmnet2014\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9DEF52003E\"" + ], + "Location": [ + "https://azs-1437.search-dogfood.windows-int.net/skillsets('azsmnet2014')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "51abb153-aaaa-431c-929a-d89863faef73" + ], + "elapsed-time": [ + "46" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9088/providers/Microsoft.Search/searchServices/azs-1437?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNDM3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1a91e08-b9d4-478c-85d7-ec58d67eff8a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1a91e08-b9d4-478c-85d7-ec58d67eff8a" + ], + "request-id": [ + "e1a91e08-b9d4-478c-85d7-ec58d67eff8a" + ], + "elapsed-time": [ + "577" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "acca361e-8baf-4790-bbd5-64dd8c5a5397" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173455Z:acca361e-8baf-4790-bbd5-64dd8c5a5397" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet9088", + "azsmnet2014" + ], + "GenerateServiceName": [ + "azs-1437" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateUpdatesWhenSkillsetExists.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateUpdatesWhenSkillsetExists.json new file mode 100644 index 000000000000..72f6d381abd3 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateOrUpdateUpdatesWhenSkillsetExists.json @@ -0,0 +1,554 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "016a5709-7da1-4412-931e-f3ed4ae2cd61" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1163" + ], + "x-ms-request-id": [ + "9a13470c-1bd4-41a3-b07e-1c03473e7e76" + ], + "x-ms-correlation-request-id": [ + "9a13470c-1bd4-41a3-b07e-1c03473e7e76" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173519Z:9a13470c-1bd4-41a3-b07e-1c03473e7e76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9884?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5ODg0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "8c95f884-3b3f-4e2a-9ef4-67c8f621a48c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9884\",\r\n \"name\": \"azsmnet9884\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1162" + ], + "x-ms-request-id": [ + "e61b18bd-1ac4-4b53-88ed-a51d9acf8c19" + ], + "x-ms-correlation-request-id": [ + "e61b18bd-1ac4-4b53-88ed-a51d9acf8c19" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173520Z:e61b18bd-1ac4-4b53-88ed-a51d9acf8c19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9884/providers/Microsoft.Search/searchServices/azs-5310?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5ODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MzEwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "ec60d733-a38f-407e-a9b8-13f0711cfa9a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9884/providers/Microsoft.Search/searchServices/azs-5310\",\r\n \"name\": \"azs-5310\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A35%3A24.1347815Z'\"" + ], + "x-ms-request-id": [ + "ec60d733-a38f-407e-a9b8-13f0711cfa9a" + ], + "request-id": [ + "ec60d733-a38f-407e-a9b8-13f0711cfa9a" + ], + "elapsed-time": [ + "1938" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1161" + ], + "x-ms-correlation-request-id": [ + "f1ab2c8d-e187-4c0f-b031-2a4f0b486d02" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173524Z:f1ab2c8d-e187-4c0f-b031-2a4f0b486d02" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9884/providers/Microsoft.Search/searchServices/azs-5310/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5ODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MzEwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57205280-52ff-4bc7-be8d-4cd5086abe8b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"C8547FE735E4A57BEDF9F1348C0016F1\",\r\n \"secondaryKey\": \"C2B233D06AA73D6BD14150E3A6757AA2\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "57205280-52ff-4bc7-be8d-4cd5086abe8b" + ], + "request-id": [ + "57205280-52ff-4bc7-be8d-4cd5086abe8b" + ], + "elapsed-time": [ + "529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1160" + ], + "x-ms-correlation-request-id": [ + "004db7fb-ec8f-4bc0-b827-b73e1bcb45b5" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173526Z:004db7fb-ec8f-4bc0-b827-b73e1bcb45b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9884/providers/Microsoft.Search/searchServices/azs-5310/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5ODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MzEwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "981d7fc9-7e62-4054-8d8c-cdf81729b64c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"C8DBE7C0264B6429786ED6F9FADE17C4\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "981d7fc9-7e62-4054-8d8c-cdf81729b64c" + ], + "request-id": [ + "981d7fc9-7e62-4054-8d8c-cdf81729b64c" + ], + "elapsed-time": [ + "428" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "63b0ff4a-16f5-48cd-b162-2a356481a465" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173527Z:63b0ff4a-16f5-48cd-b162-2a356481a465" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('azsmnet1411')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE0MTEnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"azsmnet1411\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "691" + ], + "client-request-id": [ + "b9f0e674-52b3-40c2-aa6a-d9f1de5631ac" + ], + "Prefer": [ + "return=representation" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "C8547FE735E4A57BEDF9F1348C0016F1" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5310.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E0580756D\\\"\",\r\n \"name\": \"azsmnet1411\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E0580756D\"" + ], + "Location": [ + "https://azs-5310.search-dogfood.windows-int.net/skillsets('azsmnet1411')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "b9f0e674-52b3-40c2-aa6a-d9f1de5631ac" + ], + "elapsed-time": [ + "201" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('azsmnet1411')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE0MTEnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"azsmnet1411\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext1\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1279" + ], + "client-request-id": [ + "36e671fe-9432-47f0-8fa7-e54099c502cc" + ], + "Prefer": [ + "return=representation" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "C8547FE735E4A57BEDF9F1348C0016F1" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5310.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E059BCC3F\\\"\",\r\n \"name\": \"azsmnet1411\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext1\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E059BCC3F\"" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "36e671fe-9432-47f0-8fa7-e54099c502cc" + ], + "elapsed-time": [ + "136" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9884/providers/Microsoft.Search/searchServices/azs-5310?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5ODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MzEwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f3f27fa-2a48-4d58-97d0-331d809d13b6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2f3f27fa-2a48-4d58-97d0-331d809d13b6" + ], + "request-id": [ + "2f3f27fa-2a48-4d58-97d0-331d809d13b6" + ], + "elapsed-time": [ + "767" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "6a4ca319-b457-4a32-8e0a-364bc26d5caf" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173534Z:6a4ca319-b457-4a32-8e0a-364bc26d5caf" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet9884", + "azsmnet1411" + ], + "GenerateServiceName": [ + "azs-5310" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json new file mode 100644 index 000000000000..3dea3e99bc71 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json @@ -0,0 +1,526 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b01db097-d93a-49d1-8c10-d37369a578c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-request-id": [ + "4f302a3a-be73-426b-9c25-4cf80da3e3d6" + ], + "x-ms-correlation-request-id": [ + "4f302a3a-be73-426b-9c25-4cf80da3e3d6" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173500Z:4f302a3a-be73-426b-9c25-4cf80da3e3d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6038?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MDM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "7caeecbd-b1b2-42d1-bafa-cc5377dd6509" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6038\",\r\n \"name\": \"azsmnet6038\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-request-id": [ + "c53f1e92-9fa6-4b51-b930-e4d15502a48f" + ], + "x-ms-correlation-request-id": [ + "c53f1e92-9fa6-4b51-b930-e4d15502a48f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173501Z:c53f1e92-9fa6-4b51-b930-e4d15502a48f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6038/providers/Microsoft.Search/searchServices/azs-8600?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "831942e0-805b-4ab8-9b6c-b70aa0fff2b6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6038/providers/Microsoft.Search/searchServices/azs-8600\",\r\n \"name\": \"azs-8600\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A35%3A05.9834025Z'\"" + ], + "x-ms-request-id": [ + "831942e0-805b-4ab8-9b6c-b70aa0fff2b6" + ], + "request-id": [ + "831942e0-805b-4ab8-9b6c-b70aa0fff2b6" + ], + "elapsed-time": [ + "1072" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "9ae1fa06-e4d8-40ab-a26a-bb5e36bb46dc" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173506Z:9ae1fa06-e4d8-40ab-a26a-bb5e36bb46dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6038/providers/Microsoft.Search/searchServices/azs-8600/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjAwL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd20c4e3-c54f-47f1-b15f-549f78baf3e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"A5C87A20E3F645C40862106193887294\",\r\n \"secondaryKey\": \"9734C425C0A2F8E690379A0EEAE3DDCA\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cd20c4e3-c54f-47f1-b15f-549f78baf3e1" + ], + "request-id": [ + "cd20c4e3-c54f-47f1-b15f-549f78baf3e1" + ], + "elapsed-time": [ + "259" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-correlation-request-id": [ + "a091ebdf-472b-4d6a-9da8-152ad536a07b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173508Z:a091ebdf-472b-4d6a-9da8-152ad536a07b" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6038/providers/Microsoft.Search/searchServices/azs-8600/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjAwL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70fa901f-2f22-4a49-a6fd-c89b16c817e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"7B2C27135F89253F740DE85E3A0E5159\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "70fa901f-2f22-4a49-a6fd-c89b16c817e1" + ], + "request-id": [ + "70fa901f-2f22-4a49-a6fd-c89b16c817e1" + ], + "elapsed-time": [ + "216" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "b4832d5f-bbf2-4788-beef-53048f82ea54" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173509Z:b4832d5f-bbf2-4788-beef-53048f82ea54" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset2\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"visualFeatures\": [\r\n \"categories\",\r\n \"color\",\r\n \"description\",\r\n \"faces\",\r\n \"imageType\",\r\n \"tags\"\r\n ],\r\n \"details\": [\r\n \"celebrities\",\r\n \"landmarks\"\r\n ],\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mydescription/*/Tags/*\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1334" + ], + "client-request-id": [ + "1279bb7a-9e87-4504-accf-804b36548d2a" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A5C87A20E3F645C40862106193887294" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8600.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9DFA10DFBE\\\"\",\r\n \"name\": \"testskillset2\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"visualFeatures\": [\r\n \"categories\",\r\n \"color\",\r\n \"description\",\r\n \"faces\",\r\n \"imageType\",\r\n \"tags\"\r\n ],\r\n \"details\": [\r\n \"celebrities\",\r\n \"landmarks\"\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mydescription/*/Tags/*\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"maxKeyPhraseCount\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "963" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9DFA10DFBE\"" + ], + "Location": [ + "https://azs-8600.search-dogfood.windows-int.net/skillsets('testskillset2')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "1279bb7a-9e87-4504-accf-804b36548d2a" + ], + "elapsed-time": [ + "114" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset2')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0MicpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "a93b908f-ba22-4bb2-ad55-e67b590b6c03" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A5C87A20E3F645C40862106193887294" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "a93b908f-ba22-4bb2-ad55-e67b590b6c03" + ], + "elapsed-time": [ + "40" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6038/providers/Microsoft.Search/searchServices/azs-8600?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d069100-0074-4df2-8b5f-9cec52a59248" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0d069100-0074-4df2-8b5f-9cec52a59248" + ], + "request-id": [ + "0d069100-0074-4df2-8b5f-9cec52a59248" + ], + "elapsed-time": [ + "1201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "42ea701a-3aea-498d-876e-fb3fea5cf9ad" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173514Z:42ea701a-3aea-498d-876e-fb3fea5cf9ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet6038" + ], + "GenerateServiceName": [ + "azs-8600" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionLanguageDetection.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionLanguageDetection.json new file mode 100644 index 000000000000..b89b3f2a7d9c --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionLanguageDetection.json @@ -0,0 +1,526 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "240ba202-5468-47a3-a55c-d34cbf6e4b3e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1167" + ], + "x-ms-request-id": [ + "f6f15a85-7298-4713-8f70-63ce5cad3348" + ], + "x-ms-correlation-request-id": [ + "f6f15a85-7298-4713-8f70-63ce5cad3348" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173837Z:f6f15a85-7298-4713-8f70-63ce5cad3348" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6259?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MjU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "a0d17859-9b59-41cb-9663-0a78c2a71dce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6259\",\r\n \"name\": \"azsmnet6259\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1166" + ], + "x-ms-request-id": [ + "dabaaa15-9996-4ef5-ab16-40dc9e5c7dfc" + ], + "x-ms-correlation-request-id": [ + "dabaaa15-9996-4ef5-ab16-40dc9e5c7dfc" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173838Z:dabaaa15-9996-4ef5-ab16-40dc9e5c7dfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6259/providers/Microsoft.Search/searchServices/azs-8033?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDMzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "c2a21d87-33cb-44ef-b6ef-81af23bf9d96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6259/providers/Microsoft.Search/searchServices/azs-8033\",\r\n \"name\": \"azs-8033\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A38%3A41.55419Z'\"" + ], + "x-ms-request-id": [ + "c2a21d87-33cb-44ef-b6ef-81af23bf9d96" + ], + "request-id": [ + "c2a21d87-33cb-44ef-b6ef-81af23bf9d96" + ], + "elapsed-time": [ + "1053" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1145" + ], + "x-ms-correlation-request-id": [ + "6a6a5872-d206-4abd-a744-0f44c400d725" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173842Z:6a6a5872-d206-4abd-a744-0f44c400d725" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6259/providers/Microsoft.Search/searchServices/azs-8033/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDMzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55a58b3c-0834-4881-8e24-323a92ea317c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"C5B0A748FA4C1D335C4DEF0B897A03CD\",\r\n \"secondaryKey\": \"E684238107A4543D2A3D18680F8FD36E\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "55a58b3c-0834-4881-8e24-323a92ea317c" + ], + "request-id": [ + "55a58b3c-0834-4881-8e24-323a92ea317c" + ], + "elapsed-time": [ + "212" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1144" + ], + "x-ms-correlation-request-id": [ + "2ab6ecef-fc65-47ad-a19e-05f2829047be" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173845Z:2ab6ecef-fc65-47ad-a19e-05f2829047be" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6259/providers/Microsoft.Search/searchServices/azs-8033/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDMzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f385f2a2-c31c-4bfc-a1f1-1369aededb7e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"7D516E6BFA1F547BFDA8B58B9B04ADB2\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f385f2a2-c31c-4bfc-a1f1-1369aededb7e" + ], + "request-id": [ + "f385f2a2-c31c-4bfc-a1f1-1369aededb7e" + ], + "elapsed-time": [ + "229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "5fd05180-0b72-4f6f-9159-e22258291a74" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173846Z:5fd05180-0b72-4f6f-9159-e22258291a74" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset3\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.LanguageDetectionSkill\",\r\n \"description\": \"Tested Language Detection skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"languageCode\",\r\n \"targetName\": \"myLanguageCode\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "511" + ], + "client-request-id": [ + "027cc154-9363-42f3-ba9b-33b6850315ba" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "C5B0A748FA4C1D335C4DEF0B897A03CD" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8033.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E7B659D38\\\"\",\r\n \"name\": \"testskillset3\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.LanguageDetectionSkill\",\r\n \"description\": \"Tested Language Detection skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"languageCode\",\r\n \"targetName\": \"myLanguageCode\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "458" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E7B659D38\"" + ], + "Location": [ + "https://azs-8033.search-dogfood.windows-int.net/skillsets('testskillset3')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "027cc154-9363-42f3-ba9b-33b6850315ba" + ], + "elapsed-time": [ + "63" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset3')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0MycpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3049e92c-ea0d-4565-8f6b-9d3bcae0e659" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "C5B0A748FA4C1D335C4DEF0B897A03CD" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "3049e92c-ea0d-4565-8f6b-9d3bcae0e659" + ], + "elapsed-time": [ + "113" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6259/providers/Microsoft.Search/searchServices/azs-8033?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDMzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "975286b8-1727-45dd-9f50-9ebc79430f04" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "975286b8-1727-45dd-9f50-9ebc79430f04" + ], + "request-id": [ + "975286b8-1727-45dd-9f50-9ebc79430f04" + ], + "elapsed-time": [ + "764" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "7f1eeffd-f0ea-4264-9834-463af77c1ff3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173851Z:7f1eeffd-f0ea-4264-9834-463af77c1ff3" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet6259" + ], + "GenerateServiceName": [ + "azs-8033" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionMergeText.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionMergeText.json new file mode 100644 index 000000000000..d3df21182926 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionMergeText.json @@ -0,0 +1,526 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "237adf85-1ad1-49a2-839f-21865c957a97" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-request-id": [ + "f9385b2f-9103-4028-aa02-c53d5579e65a" + ], + "x-ms-correlation-request-id": [ + "f9385b2f-9103-4028-aa02-c53d5579e65a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173558Z:f9385b2f-9103-4028-aa02-c53d5579e65a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1742?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNzQyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "84d6a5de-b9af-4ff0-8517-56a721c9666d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1742\",\r\n \"name\": \"azsmnet1742\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1172" + ], + "x-ms-request-id": [ + "e6786a93-7344-4878-8433-2e81e7c587fc" + ], + "x-ms-correlation-request-id": [ + "e6786a93-7344-4878-8433-2e81e7c587fc" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173559Z:e6786a93-7344-4878-8433-2e81e7c587fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1742/providers/Microsoft.Search/searchServices/azs-6904?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTA0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "b14f65ef-7d9c-401d-a37e-4b97a3f57d5c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1742/providers/Microsoft.Search/searchServices/azs-6904\",\r\n \"name\": \"azs-6904\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A36%3A02.3523671Z'\"" + ], + "x-ms-request-id": [ + "b14f65ef-7d9c-401d-a37e-4b97a3f57d5c" + ], + "request-id": [ + "b14f65ef-7d9c-401d-a37e-4b97a3f57d5c" + ], + "elapsed-time": [ + "1228" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-correlation-request-id": [ + "de534401-db6d-48d1-8fad-8d012fb1f78f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173603Z:de534401-db6d-48d1-8fad-8d012fb1f78f" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1742/providers/Microsoft.Search/searchServices/azs-6904/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTA0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1abc6135-39d7-48ef-8fdf-95535e5ca6da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"65C9DCE002FDBEE905A69876F0381334\",\r\n \"secondaryKey\": \"691B01BCE7BB632A148DDACB544A4249\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1abc6135-39d7-48ef-8fdf-95535e5ca6da" + ], + "request-id": [ + "1abc6135-39d7-48ef-8fdf-95535e5ca6da" + ], + "elapsed-time": [ + "209" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1170" + ], + "x-ms-correlation-request-id": [ + "0bd04986-761a-4053-96a2-cf68394fe43c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173604Z:0bd04986-761a-4053-96a2-cf68394fe43c" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1742/providers/Microsoft.Search/searchServices/azs-6904/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTA0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd5ef5a3-ae27-43df-a72c-25e36f1d78d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"553A5B38FD2FB95E19F2D204FD9B1A1A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dd5ef5a3-ae27-43df-a72c-25e36f1d78d5" + ], + "request-id": [ + "dd5ef5a3-ae27-43df-a72c-25e36f1d78d5" + ], + "elapsed-time": [ + "250" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "6ed1c362-19e0-4023-ace1-bd5c36da9f47" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173605Z:6ed1c362-19e0-4023-ace1-bd5c36da9f47" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset4\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"insertPreTag\": \"__\",\r\n \"insertPostTag\": \"__e\",\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\"\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "744" + ], + "client-request-id": [ + "01b0e78a-f748-4ff5-a1ec-18ba28e8306d" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "65C9DCE002FDBEE905A69876F0381334" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6904.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E1BD6522B\\\"\",\r\n \"name\": \"testskillset4\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\"\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ],\r\n \"insertPreTag\": \"__\",\r\n \"insertPostTag\": \"__e\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E1BD6522B\"" + ], + "Location": [ + "https://azs-6904.search-dogfood.windows-int.net/skillsets('testskillset4')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "01b0e78a-f748-4ff5-a1ec-18ba28e8306d" + ], + "elapsed-time": [ + "107" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset4')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0NCcpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b62bae28-1dcc-48a1-bd40-63334555b408" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "65C9DCE002FDBEE905A69876F0381334" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "b62bae28-1dcc-48a1-bd40-63334555b408" + ], + "elapsed-time": [ + "43" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1742/providers/Microsoft.Search/searchServices/azs-6904?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTA0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c218ae8-5c5b-410e-98c9-6d4ce1088ed9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2c218ae8-5c5b-410e-98c9-6d4ce1088ed9" + ], + "request-id": [ + "2c218ae8-5c5b-410e-98c9-6d4ce1088ed9" + ], + "elapsed-time": [ + "940" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "a3a3aa4f-39c6-4f58-b7b4-d7e3141733ef" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173611Z:a3a3aa4f-39c6-4f58-b7b4-d7e3141733ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet1742" + ], + "GenerateServiceName": [ + "azs-6904" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json new file mode 100644 index 000000000000..640a4b4e9930 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json @@ -0,0 +1,758 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2825f1a-3adf-4976-8bfa-cc87a6d0a1a8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1161" + ], + "x-ms-request-id": [ + "bc962bd7-dafa-45e4-864b-d807a526d2cd" + ], + "x-ms-correlation-request-id": [ + "bc962bd7-dafa-45e4-864b-d807a526d2cd" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173916Z:bc962bd7-dafa-45e4-864b-d807a526d2cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8607?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NjA3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "75886947-07e9-4c69-8b15-705052e27d5a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8607\",\r\n \"name\": \"azsmnet8607\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1160" + ], + "x-ms-request-id": [ + "59a6a474-31c5-4728-9be2-001d018276ef" + ], + "x-ms-correlation-request-id": [ + "59a6a474-31c5-4728-9be2-001d018276ef" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173917Z:59a6a474-31c5-4728-9be2-001d018276ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8607/providers/Microsoft.Search/searchServices/azs-2176?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMTc2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "2ab44ac4-4a0e-4a70-907f-75245a390a6e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8607/providers/Microsoft.Search/searchServices/azs-2176\",\r\n \"name\": \"azs-2176\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A39%3A24.8126101Z'\"" + ], + "x-ms-request-id": [ + "2ab44ac4-4a0e-4a70-907f-75245a390a6e" + ], + "request-id": [ + "2ab44ac4-4a0e-4a70-907f-75245a390a6e" + ], + "elapsed-time": [ + "4274" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1163" + ], + "x-ms-correlation-request-id": [ + "704e8267-09ec-45b9-9679-3733457f0d49" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173925Z:704e8267-09ec-45b9-9679-3733457f0d49" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8607/providers/Microsoft.Search/searchServices/azs-2176/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMTc2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b8e50e6-644c-4f14-9415-3ac587785b60" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"12D4FCE01DC6AA5C54104DF58C82347D\",\r\n \"secondaryKey\": \"918AE457889AA8E775C55E7B838BAEB2\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6b8e50e6-644c-4f14-9415-3ac587785b60" + ], + "request-id": [ + "6b8e50e6-644c-4f14-9415-3ac587785b60" + ], + "elapsed-time": [ + "172" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1162" + ], + "x-ms-correlation-request-id": [ + "5916f398-a6fc-47e8-84bb-c86d4c78e1a2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173927Z:5916f398-a6fc-47e8-84bb-c86d4c78e1a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8607/providers/Microsoft.Search/searchServices/azs-2176/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMTc2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8829c114-8286-464e-95fd-103641712605" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"E501736ED5CED52EA439563690979A85\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8829c114-8286-464e-95fd-103641712605" + ], + "request-id": [ + "8829c114-8286-464e-95fd-103641712605" + ], + "elapsed-time": [ + "2104" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "1f68def8-e3b4-4a4f-ace1-6199fd045280" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173930Z:1f68def8-e3b4-4a4f-ace1-6199fd045280" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"pt\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"defaultLanguageCode\": \"pt-PT\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1085" + ], + "client-request-id": [ + "6d029ec3-3c18-4df7-a69d-d5bc762e45eb" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "12D4FCE01DC6AA5C54104DF58C82347D" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2176.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E95AB5529\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"pt\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"pt-PT\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "837" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E95AB5529\"" + ], + "Location": [ + "https://azs-2176.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "6d029ec3-3c18-4df7-a69d-d5bc762e45eb" + ], + "elapsed-time": [ + "101" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1082" + ], + "client-request-id": [ + "94af5066-3cdb-45aa-a4b1-6d801239e8f1" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "12D4FCE01DC6AA5C54104DF58C82347D" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2176.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E95C72148\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fi\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"fi\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "834" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E95C72148\"" + ], + "Location": [ + "https://azs-2176.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "94af5066-3cdb-45aa-a4b1-6d801239e8f1" + ], + "elapsed-time": [ + "45" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1082" + ], + "client-request-id": [ + "b4c74032-6bb0-40b7-809a-bb77a93e6a09" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "12D4FCE01DC6AA5C54104DF58C82347D" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2176.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E95DCF87A\\\"\",\r\n \"name\": \"testskillset1\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"en\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "834" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E95DCF87A\"" + ], + "Location": [ + "https://azs-2176.search-dogfood.windows-int.net/skillsets('testskillset1')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "b4c74032-6bb0-40b7-809a-bb77a93e6a09" + ], + "elapsed-time": [ + "84" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset1')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0MScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "1f69ed83-6918-4594-8a02-6cfa2c90d738" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "12D4FCE01DC6AA5C54104DF58C82347D" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "1f69ed83-6918-4594-8a02-6cfa2c90d738" + ], + "elapsed-time": [ + "49" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset1')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0MScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "39756abd-c547-43a9-b6a2-87491631dcbc" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "12D4FCE01DC6AA5C54104DF58C82347D" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "39756abd-c547-43a9-b6a2-87491631dcbc" + ], + "elapsed-time": [ + "44" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset1')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0MScpP2FwaS12ZXJzaW9uPTIwMTctMTEtMTEtUHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "dbad8104-171b-492c-b057-9b3a90b654a5" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "12D4FCE01DC6AA5C54104DF58C82347D" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "dbad8104-171b-492c-b057-9b3a90b654a5" + ], + "elapsed-time": [ + "54" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8607/providers/Microsoft.Search/searchServices/azs-2176?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjA3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMTc2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64aff91a-6e10-4b43-ae31-f166de9b130c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64aff91a-6e10-4b43-ae31-f166de9b130c" + ], + "request-id": [ + "64aff91a-6e10-4b43-ae31-f166de9b130c" + ], + "elapsed-time": [ + "1684" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "2777483c-2b06-410a-a856-7ffec1140d86" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173937Z:2777483c-2b06-410a-a856-7ffec1140d86" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet8607" + ], + "GenerateServiceName": [ + "azs-2176" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json new file mode 100644 index 000000000000..b7bb95efb5ba --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json @@ -0,0 +1,758 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4eb7811-03d1-4b44-b163-aa1af5ab3978" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1147" + ], + "x-ms-request-id": [ + "e8e5c526-a0ce-42b6-82ba-a45bfa150634" + ], + "x-ms-correlation-request-id": [ + "e8e5c526-a0ce-42b6-82ba-a45bfa150634" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173815Z:e8e5c526-a0ce-42b6-82ba-a45bfa150634" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6996?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2OTk2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "8b36b5ba-4460-40e8-a66e-40d9b2509fe9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6996\",\r\n \"name\": \"azsmnet6996\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1146" + ], + "x-ms-request-id": [ + "7a4e53f6-91c5-4561-aff0-bc7ec157abba" + ], + "x-ms-correlation-request-id": [ + "7a4e53f6-91c5-4561-aff0-bc7ec157abba" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173816Z:7a4e53f6-91c5-4561-aff0-bc7ec157abba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6996/providers/Microsoft.Search/searchServices/azs-3286?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMjg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "6dd7c3cb-51b3-41ad-8aab-cd8edecc6a6e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6996/providers/Microsoft.Search/searchServices/azs-3286\",\r\n \"name\": \"azs-3286\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A38%3A21.0785844Z'\"" + ], + "x-ms-request-id": [ + "6dd7c3cb-51b3-41ad-8aab-cd8edecc6a6e" + ], + "request-id": [ + "6dd7c3cb-51b3-41ad-8aab-cd8edecc6a6e" + ], + "elapsed-time": [ + "2716" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1165" + ], + "x-ms-correlation-request-id": [ + "a98c97fe-3e97-473e-939b-71eee149383a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173821Z:a98c97fe-3e97-473e-939b-71eee149383a" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6996/providers/Microsoft.Search/searchServices/azs-3286/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMjg2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41a24cde-835d-4487-bc47-52f4ce807c74" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"7425EA20EA1C0184FAEB6AE35E9710C0\",\r\n \"secondaryKey\": \"2CDC84970839E62CC7EAC48D39A51E2B\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "41a24cde-835d-4487-bc47-52f4ce807c74" + ], + "request-id": [ + "41a24cde-835d-4487-bc47-52f4ce807c74" + ], + "elapsed-time": [ + "881" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1164" + ], + "x-ms-correlation-request-id": [ + "31c1deba-8aa0-4a61-91f9-5fa90c9b6409" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173824Z:31c1deba-8aa0-4a61-91f9-5fa90c9b6409" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6996/providers/Microsoft.Search/searchServices/azs-3286/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMjg2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "263c2028-32c9-4e1b-9657-6f6f1eeda0ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"4F6B6069B467B80544F835790C6DC178\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "263c2028-32c9-4e1b-9657-6f6f1eeda0ed" + ], + "request-id": [ + "263c2028-32c9-4e1b-9657-6f6f1eeda0ed" + ], + "elapsed-time": [ + "955" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "a8d73be5-8d32-4f03-903c-f615c2582879" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173825Z:a8d73be5-8d32-4f03-903c-f615c2582879" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1094" + ], + "client-request-id": [ + "6e8176de-f063-49f7-bcc5-31bd8b29e346" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7425EA20EA1C0184FAEB6AE35E9710C0" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3286.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E6F6B8382\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"maxKeyPhraseCount\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "871" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E6F6B8382\"" + ], + "Location": [ + "https://azs-3286.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "6e8176de-f063-49f7-bcc5-31bd8b29e346" + ], + "elapsed-time": [ + "84" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1094" + ], + "client-request-id": [ + "da8191fe-1b7d-4018-a418-d646549f8bff" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7425EA20EA1C0184FAEB6AE35E9710C0" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3286.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E6F863DE7\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fr\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"fr\",\r\n \"maxKeyPhraseCount\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "871" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E6F863DE7\"" + ], + "Location": [ + "https://azs-3286.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "da8191fe-1b7d-4018-a418-d646549f8bff" + ], + "elapsed-time": [ + "51" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"es\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"defaultLanguageCode\": \"es\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1094" + ], + "client-request-id": [ + "b248cf46-6821-422a-b91c-5ace31053d31" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7425EA20EA1C0184FAEB6AE35E9710C0" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-3286.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E6F9A8E2D\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"es\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"es\",\r\n \"maxKeyPhraseCount\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "871" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E6F9A8E2D\"" + ], + "Location": [ + "https://azs-3286.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "b248cf46-6821-422a-b91c-5ace31053d31" + ], + "elapsed-time": [ + "50" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e8e944f5-5da0-4e16-93ca-050c0e0710c3" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7425EA20EA1C0184FAEB6AE35E9710C0" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "e8e944f5-5da0-4e16-93ca-050c0e0710c3" + ], + "elapsed-time": [ + "39" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "29930ff7-884c-4651-a30d-4d77716d0ce8" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7425EA20EA1C0184FAEB6AE35E9710C0" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "29930ff7-884c-4651-a30d-4d77716d0ce8" + ], + "elapsed-time": [ + "31" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "ff32d11a-1b6f-4acd-80ae-d4d03a15f44d" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7425EA20EA1C0184FAEB6AE35E9710C0" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "ff32d11a-1b6f-4acd-80ae-d4d03a15f44d" + ], + "elapsed-time": [ + "28" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6996/providers/Microsoft.Search/searchServices/azs-3286?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zMjg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc7051a4-f3f6-46a1-b1be-c2f0def945de" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cc7051a4-f3f6-46a1-b1be-c2f0def945de" + ], + "request-id": [ + "cc7051a4-f3f6-46a1-b1be-c2f0def945de" + ], + "elapsed-time": [ + "820" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "c63ae8c5-0f13-4a2e-8992-9284c532d4d6" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173832Z:c63ae8c5-0f13-4a2e-8992-9284c532d4d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet6996" + ], + "GenerateServiceName": [ + "azs-3286" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrNamedEntity.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrNamedEntity.json new file mode 100644 index 000000000000..9ddcac6251a3 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrNamedEntity.json @@ -0,0 +1,645 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27507e69-b104-4ede-9a02-bb4524747807" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1169" + ], + "x-ms-request-id": [ + "e5de4d90-d179-472a-b5b7-b28038e29725" + ], + "x-ms-correlation-request-id": [ + "e5de4d90-d179-472a-b5b7-b28038e29725" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173757Z:e5de4d90-d179-472a-b5b7-b28038e29725" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6562?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2NTYyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "70f810c6-5f72-46ae-8c1b-eff9e0b289b0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6562\",\r\n \"name\": \"azsmnet6562\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1168" + ], + "x-ms-request-id": [ + "460d378a-69aa-40e9-b4a8-f636d171d391" + ], + "x-ms-correlation-request-id": [ + "460d378a-69aa-40e9-b4a8-f636d171d391" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173758Z:460d378a-69aa-40e9-b4a8-f636d171d391" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6562/providers/Microsoft.Search/searchServices/azs-1304?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzA0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "6bc5cc8c-1504-4c47-ac70-473b4e9ec507" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6562/providers/Microsoft.Search/searchServices/azs-1304\",\r\n \"name\": \"azs-1304\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A38%3A02.3886896Z'\"" + ], + "x-ms-request-id": [ + "6bc5cc8c-1504-4c47-ac70-473b4e9ec507" + ], + "request-id": [ + "6bc5cc8c-1504-4c47-ac70-473b4e9ec507" + ], + "elapsed-time": [ + "839" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1149" + ], + "x-ms-correlation-request-id": [ + "ce9e4cb3-95e6-4324-8504-94e00e5bc1a3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173802Z:ce9e4cb3-95e6-4324-8504-94e00e5bc1a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6562/providers/Microsoft.Search/searchServices/azs-1304/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzA0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78e59000-3fc3-4371-b7c2-e3e155ca56dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"F3C39EE86D3EF05D49838E20EE63141F\",\r\n \"secondaryKey\": \"318C29F34938BB566E7A101C645CC5E9\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "78e59000-3fc3-4371-b7c2-e3e155ca56dc" + ], + "request-id": [ + "78e59000-3fc3-4371-b7c2-e3e155ca56dc" + ], + "elapsed-time": [ + "152" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1148" + ], + "x-ms-correlation-request-id": [ + "9e133345-9a4f-4212-9d22-62cdde4cb749" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173804Z:9e133345-9a4f-4212-9d22-62cdde4cb749" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6562/providers/Microsoft.Search/searchServices/azs-1304/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzA0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef48d696-98a1-4958-97ff-c13101a0a3ab" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"D45DAA3C200B2CFCE77DB4B10E6E08B2\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ef48d696-98a1-4958-97ff-c13101a0a3ab" + ], + "request-id": [ + "ef48d696-98a1-4958-97ff-c13101a0a3ab" + ], + "elapsed-time": [ + "263" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "2922ff6f-0409-4e21-a7b9-90fb6f94947c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173805Z:2922ff6f-0409-4e21-a7b9-90fb6f94947c" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1062" + ], + "client-request-id": [ + "44b614e6-e501-4267-8890-c938b272ef42" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "F3C39EE86D3EF05D49838E20EE63141F" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1304.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E6370A653\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ],\r\n \"categories\": [],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "894" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E6370A653\"" + ], + "Location": [ + "https://azs-1304.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "44b614e6-e501-4267-8890-c938b272ef42" + ], + "elapsed-time": [ + "121" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"categories\": [\r\n \"location\",\r\n \"organization\",\r\n \"person\"\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1204" + ], + "client-request-id": [ + "52584074-25d4-4d6b-b47b-6af03d350cf5" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "F3C39EE86D3EF05D49838E20EE63141F" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1304.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E638BD5F9\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ],\r\n \"categories\": [\r\n \"location\",\r\n \"organization\",\r\n \"person\"\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "933" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E638BD5F9\"" + ], + "Location": [ + "https://azs-1304.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "52584074-25d4-4d6b-b47b-6af03d350cf5" + ], + "elapsed-time": [ + "47" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e68daf49-0cc8-4f20-a9d3-56da84e16a82" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "F3C39EE86D3EF05D49838E20EE63141F" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "e68daf49-0cc8-4f20-a9d3-56da84e16a82" + ], + "elapsed-time": [ + "41" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8ff85577-a25f-4c3f-9eda-fb3df3fb9c38" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "F3C39EE86D3EF05D49838E20EE63141F" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "8ff85577-a25f-4c3f-9eda-fb3df3fb9c38" + ], + "elapsed-time": [ + "37" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6562/providers/Microsoft.Search/searchServices/azs-1304?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzA0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cb6d268-4f31-4a14-9fe6-2e5e9132bdd6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1cb6d268-4f31-4a14-9fe6-2e5e9132bdd6" + ], + "request-id": [ + "1cb6d268-4f31-4a14-9fe6-2e5e9132bdd6" + ], + "elapsed-time": [ + "618" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "b30d4c4c-fc84-4db3-a0d0-39bb233461a3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173811Z:b30d4c4c-fc84-4db3-a0d0-39bb233461a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet6562" + ], + "GenerateServiceName": [ + "azs-1304" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrShaper.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrShaper.json new file mode 100644 index 000000000000..82977d754b2f --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrShaper.json @@ -0,0 +1,526 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea69d979-ddef-40e0-a49e-e52840c4f910" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1153" + ], + "x-ms-request-id": [ + "84fbab6a-76c0-4815-b5f4-0aeea603da91" + ], + "x-ms-correlation-request-id": [ + "84fbab6a-76c0-4815-b5f4-0aeea603da91" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173658Z:84fbab6a-76c0-4815-b5f4-0aeea603da91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9262?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MjYyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "56dd9048-773d-4c49-9c7b-da2e7cf1df4f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9262\",\r\n \"name\": \"azsmnet9262\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1152" + ], + "x-ms-request-id": [ + "3d285254-2fb3-4884-a6ce-b418c1065e93" + ], + "x-ms-correlation-request-id": [ + "3d285254-2fb3-4884-a6ce-b418c1065e93" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173658Z:3d285254-2fb3-4884-a6ce-b418c1065e93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9262/providers/Microsoft.Search/searchServices/azs-4028?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MDI4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "6f0aea87-75ff-4667-b9ba-e9f4dfebc764" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9262/providers/Microsoft.Search/searchServices/azs-4028\",\r\n \"name\": \"azs-4028\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A37%3A02.5179618Z'\"" + ], + "x-ms-request-id": [ + "6f0aea87-75ff-4667-b9ba-e9f4dfebc764" + ], + "request-id": [ + "6f0aea87-75ff-4667-b9ba-e9f4dfebc764" + ], + "elapsed-time": [ + "1114" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1151" + ], + "x-ms-correlation-request-id": [ + "b34ecff1-eb25-406e-bda5-98d25fa11efe" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173703Z:b34ecff1-eb25-406e-bda5-98d25fa11efe" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9262/providers/Microsoft.Search/searchServices/azs-4028/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MDI4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47aae73a-8f66-4cb5-95bc-f27f21523d4c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"0AB99E2C7FC01E669FA061E2BACA67D6\",\r\n \"secondaryKey\": \"67369A89DC31020D6A4B98B9F824F67E\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "47aae73a-8f66-4cb5-95bc-f27f21523d4c" + ], + "request-id": [ + "47aae73a-8f66-4cb5-95bc-f27f21523d4c" + ], + "elapsed-time": [ + "235" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1150" + ], + "x-ms-correlation-request-id": [ + "1210c7ad-1092-4451-8a17-cbe054adf7ed" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173705Z:1210c7ad-1092-4451-8a17-cbe054adf7ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9262/providers/Microsoft.Search/searchServices/azs-4028/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MDI4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0bcca37-f8d1-4f67-bbc0-463a97848916" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"1665EB8043968CFDB3155F9A8DDCBC16\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a0bcca37-f8d1-4f67-bbc0-463a97848916" + ], + "request-id": [ + "a0bcca37-f8d1-4f67-bbc0-463a97848916" + ], + "elapsed-time": [ + "351" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "b6961648-c857-42a1-9a46-f6343652b88b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173706Z:b6961648-c857-42a1-9a46-f6343652b88b" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ShaperSkill\",\r\n \"description\": \"Tested Shaper skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myOutput\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1033" + ], + "client-request-id": [ + "f2dd3475-b279-4901-9e25-52a8b243b88e" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "0AB99E2C7FC01E669FA061E2BACA67D6" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-4028.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E401F0D29\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Util.ShaperSkill\",\r\n \"description\": \"Tested Shaper skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"output\",\r\n \"targetName\": \"myOutput\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "794" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E401F0D29\"" + ], + "Location": [ + "https://azs-4028.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "f2dd3475-b279-4901-9e25-52a8b243b88e" + ], + "elapsed-time": [ + "92" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "80b3797a-d723-4f4c-a27d-1f26af99a01d" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "0AB99E2C7FC01E669FA061E2BACA67D6" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "80b3797a-d723-4f4c-a27d-1f26af99a01d" + ], + "elapsed-time": [ + "47" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9262/providers/Microsoft.Search/searchServices/azs-4028?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MDI4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07f893b9-7fd4-4f50-9c4a-ecdfe979b323" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "07f893b9-7fd4-4f50-9c4a-ecdfe979b323" + ], + "request-id": [ + "07f893b9-7fd4-4f50-9c4a-ecdfe979b323" + ], + "elapsed-time": [ + "1529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "c63f34b3-3269-42aa-ac36-267119863dad" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173713Z:c63f34b3-3269-42aa-ac36-267119863dad" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet9262" + ], + "GenerateServiceName": [ + "azs-4028" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrSplitText.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrSplitText.json new file mode 100644 index 000000000000..435aa378e2e8 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionOcrSplitText.json @@ -0,0 +1,874 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8013800-2348-4033-8bd0-0ce5f62a120c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1161" + ], + "x-ms-request-id": [ + "e0ac848f-1bbd-4989-a9f6-3aadd17a827d" + ], + "x-ms-correlation-request-id": [ + "e0ac848f-1bbd-4989-a9f6-3aadd17a827d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173942Z:e0ac848f-1bbd-4989-a9f6-3aadd17a827d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5130?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MTMwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "65d01c92-f6c6-484e-bcf6-f0f19c2d52f3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5130\",\r\n \"name\": \"azsmnet5130\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1160" + ], + "x-ms-request-id": [ + "e568082a-c2f0-4e31-aace-d02dbb0bb6e4" + ], + "x-ms-correlation-request-id": [ + "e568082a-c2f0-4e31-aace-d02dbb0bb6e4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173943Z:e568082a-c2f0-4e31-aace-d02dbb0bb6e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5130/providers/Microsoft.Search/searchServices/azs-2822?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODIyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "892728b3-3378-49aa-ac14-f21ff26cd5f7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5130/providers/Microsoft.Search/searchServices/azs-2822\",\r\n \"name\": \"azs-2822\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A39%3A46.9207789Z'\"" + ], + "x-ms-request-id": [ + "892728b3-3378-49aa-ac14-f21ff26cd5f7" + ], + "request-id": [ + "892728b3-3378-49aa-ac14-f21ff26cd5f7" + ], + "elapsed-time": [ + "2283" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1159" + ], + "x-ms-correlation-request-id": [ + "ec294200-aa74-4d36-8192-c5fce44d1e8d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173948Z:ec294200-aa74-4d36-8192-c5fce44d1e8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5130/providers/Microsoft.Search/searchServices/azs-2822/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODIyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53aca822-4655-4dcf-9d55-cf4922a94457" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"CB68DE71DCBC66062E7807C782BF0DCB\",\r\n \"secondaryKey\": \"611B263CC0408533772B2F884D6A434C\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "53aca822-4655-4dcf-9d55-cf4922a94457" + ], + "request-id": [ + "53aca822-4655-4dcf-9d55-cf4922a94457" + ], + "elapsed-time": [ + "305" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1158" + ], + "x-ms-correlation-request-id": [ + "7c652d31-59f4-4a3e-b03d-e7c29e06ebcd" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173950Z:7c652d31-59f4-4a3e-b03d-e7c29e06ebcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5130/providers/Microsoft.Search/searchServices/azs-2822/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODIyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4779aa30-71df-4809-8636-1eeb25ec30af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"A6EFC158A7307A0F8D80B4D46DEE0488\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4779aa30-71df-4809-8636-1eeb25ec30af" + ], + "request-id": [ + "4779aa30-71df-4809-8636-1eeb25ec30af" + ], + "elapsed-time": [ + "198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "87110383-1deb-47dc-a6bb-f49793d795b9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173950Z:87110383-1deb-47dc-a6bb-f49793d795b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"textSplitMode\": \"pages\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1106" + ], + "client-request-id": [ + "c229f9da-532d-42b9-81a8-9c6ada5367e0" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "CB68DE71DCBC66062E7807C782BF0DCB" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2822.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9EA1FC084C\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "874" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9EA1FC084C\"" + ], + "Location": [ + "https://azs-2822.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "c229f9da-532d-42b9-81a8-9c6ada5367e0" + ], + "elapsed-time": [ + "118" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"defaultLanguageCode\": \"fr\",\r\n \"textSplitMode\": \"pages\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1106" + ], + "client-request-id": [ + "581c3b80-291c-4972-a38a-d0743573048a" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "CB68DE71DCBC66062E7807C782BF0DCB" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2822.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9EA2332B31\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fr\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"fr\",\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "874" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9EA2332B31\"" + ], + "Location": [ + "https://azs-2822.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "581c3b80-291c-4972-a38a-d0743573048a" + ], + "elapsed-time": [ + "67" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"defaultLanguageCode\": \"fi\",\r\n \"textSplitMode\": \"sentences\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1110" + ], + "client-request-id": [ + "406ba602-e605-4143-9619-50af4631b4c9" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "CB68DE71DCBC66062E7807C782BF0DCB" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2822.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9EA247C9A6\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"fi\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"fi\",\r\n \"textSplitMode\": \"sentences\",\r\n \"maximumPageLength\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "878" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9EA247C9A6\"" + ], + "Location": [ + "https://azs-2822.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "406ba602-e605-4143-9619-50af4631b4c9" + ], + "elapsed-time": [ + "41" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"da\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"defaultLanguageCode\": \"da\",\r\n \"textSplitMode\": \"sentences\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1110" + ], + "client-request-id": [ + "01109b7d-07ad-4302-a7c7-a078c834ae11" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "CB68DE71DCBC66062E7807C782BF0DCB" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-2822.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9EA25B2F45\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"da\",\r\n \"detectOrientation\": null\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": \"da\",\r\n \"textSplitMode\": \"sentences\",\r\n \"maximumPageLength\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "878" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9EA25B2F45\"" + ], + "Location": [ + "https://azs-2822.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "01109b7d-07ad-4302-a7c7-a078c834ae11" + ], + "elapsed-time": [ + "36" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "65af0b90-b759-4cba-ab36-d86e2b2bb1f9" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "CB68DE71DCBC66062E7807C782BF0DCB" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "65af0b90-b759-4cba-ab36-d86e2b2bb1f9" + ], + "elapsed-time": [ + "192" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5ceba7ba-454c-44c6-a41e-2dcf453f4222" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "CB68DE71DCBC66062E7807C782BF0DCB" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "5ceba7ba-454c-44c6-a41e-2dcf453f4222" + ], + "elapsed-time": [ + "37" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8d7d6d4d-1bd4-4ce8-b62d-7d96532b74c4" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "CB68DE71DCBC66062E7807C782BF0DCB" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "8d7d6d4d-1bd4-4ce8-b62d-7d96532b74c4" + ], + "elapsed-time": [ + "36" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "c73b4f49-ca3b-480c-a9e8-6290fabe853e" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "CB68DE71DCBC66062E7807C782BF0DCB" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "c73b4f49-ca3b-480c-a9e8-6290fabe853e" + ], + "elapsed-time": [ + "39" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5130/providers/Microsoft.Search/searchServices/azs-2822?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yODIyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffedf310-cda5-4c55-bd16-1536b52b6a06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ffedf310-cda5-4c55-bd16-1536b52b6a06" + ], + "request-id": [ + "ffedf310-cda5-4c55-bd16-1536b52b6a06" + ], + "elapsed-time": [ + "776" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "2e5f2cee-95de-4ad2-804e-20eea31733fb" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173957Z:2e5f2cee-95de-4ad2-804e-20eea31733fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet5130" + ], + "GenerateServiceName": [ + "azs-2822" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithDefaultSettings.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithDefaultSettings.json new file mode 100644 index 000000000000..a50335852106 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsCorrectDefinitionWithDefaultSettings.json @@ -0,0 +1,1229 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "601000e6-2926-4d37-89cc-edd7b209bf0a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1169" + ], + "x-ms-request-id": [ + "6b1e63b0-0760-4b0e-8839-a8b041afa1ec" + ], + "x-ms-correlation-request-id": [ + "6b1e63b0-0760-4b0e-8839-a8b041afa1ec" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173540Z:6b1e63b0-0760-4b0e-8839-a8b041afa1ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3575?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNTc1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "bd9d2fdd-2bd5-4805-82f7-24923f755456" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3575\",\r\n \"name\": \"azsmnet3575\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1168" + ], + "x-ms-request-id": [ + "801a14fc-d4b6-4922-9be8-9d164a742bd0" + ], + "x-ms-correlation-request-id": [ + "801a14fc-d4b6-4922-9be8-9d164a742bd0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173540Z:801a14fc-d4b6-4922-9be8-9d164a742bd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3575/providers/Microsoft.Search/searchServices/azs-814?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "7046aeff-657f-42c3-a565-1f2e07cb6863" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3575/providers/Microsoft.Search/searchServices/azs-814\",\r\n \"name\": \"azs-814\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "383" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A35%3A44.3541353Z'\"" + ], + "x-ms-request-id": [ + "7046aeff-657f-42c3-a565-1f2e07cb6863" + ], + "request-id": [ + "7046aeff-657f-42c3-a565-1f2e07cb6863" + ], + "elapsed-time": [ + "985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-correlation-request-id": [ + "70aeb1fc-564b-4969-bd54-da69357cacec" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173545Z:70aeb1fc-564b-4969-bd54-da69357cacec" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3575/providers/Microsoft.Search/searchServices/azs-814/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTQvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8164b920-6e23-4176-a1e0-aaf7eed9f3e3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"EB93367FA1C6C40C11228E79C3851701\",\r\n \"secondaryKey\": \"0D86A0E75117815AE03708FE8CA37C13\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8164b920-6e23-4176-a1e0-aaf7eed9f3e3" + ], + "request-id": [ + "8164b920-6e23-4176-a1e0-aaf7eed9f3e3" + ], + "elapsed-time": [ + "273" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-correlation-request-id": [ + "922d95cb-574d-4392-be9a-5da86eecfbcb" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173546Z:922d95cb-574d-4392-be9a-5da86eecfbcb" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3575/providers/Microsoft.Search/searchServices/azs-814/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTQvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88bf434e-b8c9-440c-8176-91640415aa7c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"4DA0F754C2BF6D159562220443C17519\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "88bf434e-b8c9-440c-8176-91640415aa7c" + ], + "request-id": [ + "88bf434e-b8c9-440c-8176-91640415aa7c" + ], + "elapsed-time": [ + "234" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "0c6f95f0-84dd-4189-a646-0cddb99a8546" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173547Z:0c6f95f0-84dd-4189-a646-0cddb99a8546" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet5487\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "588" + ], + "client-request-id": [ + "1a6179ce-7352-4a67-a10e-e8b220f906f8" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E10E904A1\\\"\",\r\n \"name\": \"azsmnet5487\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": null,\r\n \"detectOrientation\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "589" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E10E904A1\"" + ], + "Location": [ + "https://azs-814.search-dogfood.windows-int.net/skillsets('azsmnet5487')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "1a6179ce-7352-4a67-a10e-e8b220f906f8" + ], + "elapsed-time": [ + "87" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet5505\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "623" + ], + "client-request-id": [ + "322cfaff-3a7a-449c-8f4b-dfab28b99475" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E11054616\\\"\",\r\n \"name\": \"azsmnet5505\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": null,\r\n \"visualFeatures\": [],\r\n \"details\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E11054616\"" + ], + "Location": [ + "https://azs-814.search-dogfood.windows-int.net/skillsets('azsmnet5505')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "322cfaff-3a7a-449c-8f4b-dfab28b99475" + ], + "elapsed-time": [ + "51" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet5335\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/myText\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "523" + ], + "client-request-id": [ + "2fdcfe31-fb49-442e-b630-915988a6af57" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E1122E759\\\"\",\r\n \"name\": \"azsmnet5335\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/myText\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": null,\r\n \"maxKeyPhraseCount\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "521" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E1122E759\"" + ], + "Location": [ + "https://azs-814.search-dogfood.windows-int.net/skillsets('azsmnet5335')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "2fdcfe31-fb49-442e-b630-915988a6af57" + ], + "elapsed-time": [ + "51" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet1494\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\"\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "704" + ], + "client-request-id": [ + "747070e2-1705-491c-a24c-5f1df11d84e6" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E113E6565\\\"\",\r\n \"name\": \"azsmnet1494\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.MergeSkill\",\r\n \"description\": \"Tested Merged Text skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/text\"\r\n },\r\n {\r\n \"name\": \"itemsToInsert\",\r\n \"source\": \"/document/textitems\"\r\n },\r\n {\r\n \"name\": \"offsets\",\r\n \"source\": \"/document/offsets\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"mergedText\",\r\n \"targetName\": \"myMergedText\"\r\n }\r\n ],\r\n \"insertPreTag\": null,\r\n \"insertPostTag\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "599" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E113E6565\"" + ], + "Location": [ + "https://azs-814.search-dogfood.windows-int.net/skillsets('azsmnet1494')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "747070e2-1705-491c-a24c-5f1df11d84e6" + ], + "elapsed-time": [ + "51" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet8052\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "536" + ], + "client-request-id": [ + "4c4ef745-e317-4a39-b1a7-5ec4d43b2e18" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E1156AE17\\\"\",\r\n \"name\": \"azsmnet8052\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ],\r\n \"categories\": [],\r\n \"defaultLanguageCode\": null,\r\n \"minimumPrecision\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "549" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E1156AE17\"" + ], + "Location": [ + "https://azs-814.search-dogfood.windows-int.net/skillsets('azsmnet8052')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "4c4ef745-e317-4a39-b1a7-5ec4d43b2e18" + ], + "elapsed-time": [ + "133" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet6938\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "506" + ], + "client-request-id": [ + "ff6495a2-2041-47e7-8b77-7cc5b392d463" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E117AB987\\\"\",\r\n \"name\": \"azsmnet6938\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SentimentSkill\",\r\n \"description\": \"Tested Sentiment skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"score\",\r\n \"targetName\": \"mySentiment\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "479" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E117AB987\"" + ], + "Location": [ + "https://azs-814.search-dogfood.windows-int.net/skillsets('azsmnet6938')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "ff6495a2-2041-47e7-8b77-7cc5b392d463" + ], + "elapsed-time": [ + "56" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet4572\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"textSplitMode\": \"pages\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "535" + ], + "client-request-id": [ + "a6679620-9c5a-4271-85ca-f4819664004f" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-814.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E1193025A\\\"\",\r\n \"name\": \"azsmnet4572\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.SplitSkill\",\r\n \"description\": \"Tested Split skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"textItems\",\r\n \"targetName\": \"myTextItems\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": null,\r\n \"textSplitMode\": \"pages\",\r\n \"maximumPageLength\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E1193025A\"" + ], + "Location": [ + "https://azs-814.search-dogfood.windows-int.net/skillsets('azsmnet4572')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "a6679620-9c5a-4271-85ca-f4819664004f" + ], + "elapsed-time": [ + "54" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('azsmnet5487')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDU0ODcnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "e7893879-eeda-4e66-bf36-fc8685897b84" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "e7893879-eeda-4e66-bf36-fc8685897b84" + ], + "elapsed-time": [ + "44" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet5505')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDU1MDUnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "bb945a54-fc90-4a6d-ac37-b9065648afc8" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "bb945a54-fc90-4a6d-ac37-b9065648afc8" + ], + "elapsed-time": [ + "70" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet5335')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDUzMzUnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "04715dc9-02e4-4b0d-9b2f-7ba67d03b6cb" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "04715dc9-02e4-4b0d-9b2f-7ba67d03b6cb" + ], + "elapsed-time": [ + "59" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet1494')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE0OTQnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7dfd61c6-4502-42b8-9908-1567cae79bab" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "7dfd61c6-4502-42b8-9908-1567cae79bab" + ], + "elapsed-time": [ + "42" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet8052')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDgwNTInKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "7d3e8ee5-0c9b-46eb-ad04-f6e740ca6733" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "7d3e8ee5-0c9b-46eb-ad04-f6e740ca6733" + ], + "elapsed-time": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet6938')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDY5MzgnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "3c5c4442-f87b-47c8-8fe9-37566d2e3777" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "3c5c4442-f87b-47c8-8fe9-37566d2e3777" + ], + "elapsed-time": [ + "36" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet4572')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDQ1NzInKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "8013fca3-e387-4931-bb37-775df7bae6fc" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EB93367FA1C6C40C11228E79C3851701" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "8013fca3-e387-4931-bb37-775df7bae6fc" + ], + "elapsed-time": [ + "62" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3575/providers/Microsoft.Search/searchServices/azs-814?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8035b29b-324a-4f28-9602-847957d2c9cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:35:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8035b29b-324a-4f28-9602-847957d2c9cf" + ], + "request-id": [ + "8035b29b-324a-4f28-9602-847957d2c9cf" + ], + "elapsed-time": [ + "946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "16819406-1d8b-46f4-9071-e0f248292a6a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173553Z:16819406-1d8b-46f4-9071-e0f248292a6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet3575", + "azsmnet5487", + "azsmnet5505", + "azsmnet5335", + "azsmnet1494", + "azsmnet8052", + "azsmnet6938", + "azsmnet4572" + ], + "GenerateServiceName": [ + "azs-814" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsDefaultOcrSettings.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsDefaultOcrSettings.json new file mode 100644 index 000000000000..f5ca10a4a050 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/CreateSkillsetReturnsDefaultOcrSettings.json @@ -0,0 +1,878 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6adbc37-8d23-40b3-ab44-9182dc6af645" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9923ada8-a526-40f4-82d1-c8b012e54e68" + ], + "x-ms-correlation-request-id": [ + "9923ada8-a526-40f4-82d1-c8b012e54e68" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180718T234242Z:9923ada8-a526-40f4-82d1-c8b012e54e68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7666?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NjY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "75a9807c-a3af-4035-9c73-e34f9e0e287f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7666\",\r\n \"name\": \"azsmnet7666\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "fca3d9dd-bcca-40a4-864a-26266c316a8f" + ], + "x-ms-correlation-request-id": [ + "fca3d9dd-bcca-40a4-864a-26266c316a8f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180718T234243Z:fca3d9dd-bcca-40a4-864a-26266c316a8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7666/providers/Microsoft.Search/searchServices/azs-7894?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "d9bd4954-51c8-4ac7-ac31-238d74329d35" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7666/providers/Microsoft.Search/searchServices/azs-7894\",\r\n \"name\": \"azs-7894\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-18T23%3A42%3A50.007545Z'\"" + ], + "x-ms-request-id": [ + "d9bd4954-51c8-4ac7-ac31-238d74329d35" + ], + "request-id": [ + "d9bd4954-51c8-4ac7-ac31-238d74329d35" + ], + "elapsed-time": [ + "2479" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2d6b44f3-1754-43bc-9ab6-3b8935c7620f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180718T234250Z:2d6b44f3-1754-43bc-9ab6-3b8935c7620f" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7666/providers/Microsoft.Search/searchServices/azs-7894/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODk0L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d716f376-0bd0-43c0-97ab-fc128c901f63" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"A4E2005FFB4BE0F567144D617F0913F4\",\r\n \"secondaryKey\": \"81B051DD000381D18D8167A1E12AB4AD\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d716f376-0bd0-43c0-97ab-fc128c901f63" + ], + "request-id": [ + "d716f376-0bd0-43c0-97ab-fc128c901f63" + ], + "elapsed-time": [ + "260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "077f84e3-b466-41af-aa77-e461ab1b5f6c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180718T234253Z:077f84e3-b466-41af-aa77-e461ab1b5f6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7666/providers/Microsoft.Search/searchServices/azs-7894/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODk0L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e93155b-ae0c-4e25-8859-59c3274f1c35" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BD251879B4777FE773DA9EF303159E13\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4e93155b-ae0c-4e25-8859-59c3274f1c35" + ], + "request-id": [ + "4e93155b-ae0c-4e25-8859-59c3274f1c35" + ], + "elapsed-time": [ + "232" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "175fac3e-6adf-417a-a083-b2c9fe5746b9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180718T234253Z:175fac3e-6adf-417a-a083-b2c9fe5746b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet9859\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "588" + ], + "client-request-id": [ + "7ccfe4a4-6ad9-4651-a73d-edc8d8624b5d" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A4E2005FFB4BE0F567144D617F0913F4" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7894.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED082F797442\\\"\",\r\n \"name\": \"azsmnet9859\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": null,\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": null,\r\n \"detectOrientation\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "590" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED082F797442\"" + ], + "Location": [ + "https://azs-7894.search-dogfood.windows-int.net/skillsets('azsmnet9859')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "7ccfe4a4-6ad9-4651-a73d-edc8d8624b5d" + ], + "elapsed-time": [ + "105" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet3304\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "623" + ], + "client-request-id": [ + "5d91fd9e-064b-4e8c-8c29-aa9e72803d0b" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A4E2005FFB4BE0F567144D617F0913F4" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7894.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED082F98C3A5\\\"\",\r\n \"name\": \"azsmnet3304\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": null,\r\n \"visualFeatures\": [],\r\n \"details\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED082F98C3A5\"" + ], + "Location": [ + "https://azs-7894.search-dogfood.windows-int.net/skillsets('azsmnet3304')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "5d91fd9e-064b-4e8c-8c29-aa9e72803d0b" + ], + "elapsed-time": [ + "40" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet1751\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/myText\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "523" + ], + "client-request-id": [ + "9a7d6b72-8a4f-46ac-bcea-74a5acf35976" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A4E2005FFB4BE0F567144D617F0913F4" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7894.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED082FC3FCD3\\\"\",\r\n \"name\": \"azsmnet1751\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\r\n \"description\": \"Tested Key Phrase skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/myText\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"keyPhrases\",\r\n \"targetName\": \"myKeyPhrases\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": null,\r\n \"maxKeyPhraseCount\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED082FC3FCD3\"" + ], + "Location": [ + "https://azs-7894.search-dogfood.windows-int.net/skillsets('azsmnet1751')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "9a7d6b72-8a4f-46ac-bcea-74a5acf35976" + ], + "elapsed-time": [ + "37" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet5276\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "623" + ], + "client-request-id": [ + "2569cc42-72f0-422e-bf40-f6931c8f32ce" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A4E2005FFB4BE0F567144D617F0913F4" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-7894.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED082FD937A5\\\"\",\r\n \"name\": \"azsmnet5276\",\r\n \"description\": \"Skillset for testing default configuration\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\r\n \"description\": \"Tested image analysis skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"description\",\r\n \"targetName\": \"mydescription\"\r\n }\r\n ],\r\n \"defaultLanguageCode\": null,\r\n \"visualFeatures\": [],\r\n \"details\": []\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED082FD937A5\"" + ], + "Location": [ + "https://azs-7894.search-dogfood.windows-int.net/skillsets('azsmnet5276')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "2569cc42-72f0-422e-bf40-f6931c8f32ce" + ], + "elapsed-time": [ + "46" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('azsmnet9859')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDk4NTknKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "fe3d0bcf-e394-490b-a49e-7d28a893ff86" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A4E2005FFB4BE0F567144D617F0913F4" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "fe3d0bcf-e394-490b-a49e-7d28a893ff86" + ], + "elapsed-time": [ + "28" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet3304')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDMzMDQnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "80a8d4d5-b8fa-4dd0-8876-45319eecea81" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A4E2005FFB4BE0F567144D617F0913F4" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "80a8d4d5-b8fa-4dd0-8876-45319eecea81" + ], + "elapsed-time": [ + "157" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet1751')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE3NTEnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "d47deb65-ee43-4e57-be28-5a2aedddfc33" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A4E2005FFB4BE0F567144D617F0913F4" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "d47deb65-ee43-4e57-be28-5a2aedddfc33" + ], + "elapsed-time": [ + "26" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet5276')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDUyNzYnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "417b81f3-1575-4c6d-8163-14ac732a6d93" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "A4E2005FFB4BE0F567144D617F0913F4" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:42:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "417b81f3-1575-4c6d-8163-14ac732a6d93" + ], + "elapsed-time": [ + "33" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7666/providers/Microsoft.Search/searchServices/azs-7894?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03ODk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "108c5cfa-b439-4099-b164-3256a07c130f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 18 Jul 2018 23:43:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "108c5cfa-b439-4099-b164-3256a07c130f" + ], + "request-id": [ + "108c5cfa-b439-4099-b164-3256a07c130f" + ], + "elapsed-time": [ + "787" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "5b668e00-b5d9-4eb8-a9f6-05ccb63ca763" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180718T234301Z:5b668e00-b5d9-4eb8-a9f6-05ccb63ca763" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet7666", + "azsmnet9859", + "azsmnet3304", + "azsmnet1751", + "azsmnet5276" + ], + "GenerateServiceName": [ + "azs-7894" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/DeleteSkillsetIsIdempotent.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/DeleteSkillsetIsIdempotent.json new file mode 100644 index 000000000000..1788e9f77f08 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/DeleteSkillsetIsIdempotent.json @@ -0,0 +1,649 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c388067-b135-409f-b066-90799a446428" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-request-id": [ + "d786a402-23d3-43bb-8936-776f1979578e" + ], + "x-ms-correlation-request-id": [ + "d786a402-23d3-43bb-8936-776f1979578e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173424Z:d786a402-23d3-43bb-8936-776f1979578e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1322?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMzIyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "77f1b23b-8919-45b7-a1f7-20d54dd9e2e0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1322\",\r\n \"name\": \"azsmnet1322\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1170" + ], + "x-ms-request-id": [ + "c877390d-77bb-422a-8c51-c85dea0ea5be" + ], + "x-ms-correlation-request-id": [ + "c877390d-77bb-422a-8c51-c85dea0ea5be" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173425Z:c877390d-77bb-422a-8c51-c85dea0ea5be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1322/providers/Microsoft.Search/searchServices/azs-1709?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMzIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzA5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "7432e6ae-1b7b-43d4-a9bb-558d1976d6d0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1322/providers/Microsoft.Search/searchServices/azs-1709\",\r\n \"name\": \"azs-1709\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A34%3A29.3673509Z'\"" + ], + "x-ms-request-id": [ + "7432e6ae-1b7b-43d4-a9bb-558d1976d6d0" + ], + "request-id": [ + "7432e6ae-1b7b-43d4-a9bb-558d1976d6d0" + ], + "elapsed-time": [ + "1164" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-correlation-request-id": [ + "3ca05959-8407-4b0e-9d56-799ed7795cf3" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173429Z:3ca05959-8407-4b0e-9d56-799ed7795cf3" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1322/providers/Microsoft.Search/searchServices/azs-1709/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMzIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzA5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30f09941-9cae-44fd-a0da-61e6497979e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"1B3243694F6AEBCB33FE3F07082B2C5F\",\r\n \"secondaryKey\": \"656BB0B7886E68A0C447FBB110B145A0\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "30f09941-9cae-44fd-a0da-61e6497979e7" + ], + "request-id": [ + "30f09941-9cae-44fd-a0da-61e6497979e7" + ], + "elapsed-time": [ + "265" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1170" + ], + "x-ms-correlation-request-id": [ + "ca4eaba8-fe14-4dce-b9de-4ab1f4929e49" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173432Z:ca4eaba8-fe14-4dce-b9de-4ab1f4929e49" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1322/providers/Microsoft.Search/searchServices/azs-1709/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMzIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzA5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4fb0828-3333-4891-90f3-74e37f6fa29b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"89B9B60BB9FD3852EC66DCCFD91FCAFC\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b4fb0828-3333-4891-90f3-74e37f6fa29b" + ], + "request-id": [ + "b4fb0828-3333-4891-90f3-74e37f6fa29b" + ], + "elapsed-time": [ + "226" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "5dfdaf3d-7520-4346-8e9e-05e1359943a9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173432Z:5dfdaf3d-7520-4346-8e9e-05e1359943a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('azsmnet7406')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc0MDYnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6341c43c-2cc5-4dcf-b155-7580e114ee5f" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "1B3243694F6AEBCB33FE3F07082B2C5F" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'azsmnet7406' was found in a service named 'azs-1709'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "114" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Content-Language": [ + "en" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "6341c43c-2cc5-4dcf-b155-7580e114ee5f" + ], + "elapsed-time": [ + "82" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/skillsets('azsmnet7406')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc0MDYnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6046bf83-1104-402b-af89-5d14f5d1588d" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "1B3243694F6AEBCB33FE3F07082B2C5F" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "6046bf83-1104-402b-af89-5d14f5d1588d" + ], + "elapsed-time": [ + "57" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/skillsets('azsmnet7406')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc0MDYnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b6d59deb-0eb6-4277-9327-664175de3c48" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "1B3243694F6AEBCB33FE3F07082B2C5F" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'azsmnet7406' was found in a service named 'azs-1709'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "114" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Content-Language": [ + "en" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "b6d59deb-0eb6-4277-9327-664175de3c48" + ], + "elapsed-time": [ + "7" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet7406\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "687" + ], + "client-request-id": [ + "1720402e-a5e9-4a37-a603-6bcb8179f07a" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "1B3243694F6AEBCB33FE3F07082B2C5F" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1709.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9DE4BCABDE\\\"\",\r\n \"name\": \"azsmnet7406\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9DE4BCABDE\"" + ], + "Location": [ + "https://azs-1709.search-dogfood.windows-int.net/skillsets('azsmnet7406')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "1720402e-a5e9-4a37-a603-6bcb8179f07a" + ], + "elapsed-time": [ + "151" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1322/providers/Microsoft.Search/searchServices/azs-1709?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMzIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzA5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8dc67abe-0e4d-44dc-9340-f96c78b6524c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:34:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8dc67abe-0e4d-44dc-9340-f96c78b6524c" + ], + "request-id": [ + "8dc67abe-0e4d-44dc-9340-f96c78b6524c" + ], + "elapsed-time": [ + "998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "290bb887-cfa7-4df1-8298-eb10ed1e73e2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173438Z:290bb887-cfa7-4df1-8298-eb10ed1e73e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet1322", + "azsmnet7406" + ], + "GenerateServiceName": [ + "azs-1709" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsFalseForNonExistingSkillset.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsFalseForNonExistingSkillset.json new file mode 100644 index 000000000000..410b79c418a6 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsFalseForNonExistingSkillset.json @@ -0,0 +1,471 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7eb683b-a80f-4b0e-b1c0-40cc34541d0b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1165" + ], + "x-ms-request-id": [ + "f8316a9b-08cc-4565-a44f-3175a455f537" + ], + "x-ms-correlation-request-id": [ + "f8316a9b-08cc-4565-a44f-3175a455f537" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173856Z:f8316a9b-08cc-4565-a44f-3175a455f537" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet661?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2NjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "4f8a3b3c-240c-45f0-92bd-de51c0d0dbc9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet661\",\r\n \"name\": \"azsmnet661\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:38:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1164" + ], + "x-ms-request-id": [ + "9867e81d-712a-46a9-994a-9e4252a896c8" + ], + "x-ms-correlation-request-id": [ + "9867e81d-712a-46a9-994a-9e4252a896c8" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173857Z:9867e81d-712a-46a9-994a-9e4252a896c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet661/providers/Microsoft.Search/searchServices/azs-3401?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM0MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "50a1ab7f-c5cc-44f8-9e2e-7fd39f464f4f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet661/providers/Microsoft.Search/searchServices/azs-3401\",\r\n \"name\": \"azs-3401\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A39%3A01.354148Z'\"" + ], + "x-ms-request-id": [ + "50a1ab7f-c5cc-44f8-9e2e-7fd39f464f4f" + ], + "request-id": [ + "50a1ab7f-c5cc-44f8-9e2e-7fd39f464f4f" + ], + "elapsed-time": [ + "1001" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1163" + ], + "x-ms-correlation-request-id": [ + "128da033-1c9d-427e-860a-70dac7dcc159" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173901Z:128da033-1c9d-427e-860a-70dac7dcc159" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet661/providers/Microsoft.Search/searchServices/azs-3401/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM0MDEvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b719c423-213c-4386-85a4-782eb9139919" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"67E38AAADACD1C91BDA9022BFACA1992\",\r\n \"secondaryKey\": \"2CA23882358B0348F157FE7BFE4F32C0\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b719c423-213c-4386-85a4-782eb9139919" + ], + "request-id": [ + "b719c423-213c-4386-85a4-782eb9139919" + ], + "elapsed-time": [ + "293" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1162" + ], + "x-ms-correlation-request-id": [ + "ec0b835b-fe89-46a8-a795-a3327d2caa95" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173903Z:ec0b835b-fe89-46a8-a795-a3327d2caa95" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet661/providers/Microsoft.Search/searchServices/azs-3401/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM0MDEvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1384e9cf-eeca-4e31-b7d8-fd82f9a06699" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"6E54F033ED2FD0EC79AFFC3B2D34782B\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1384e9cf-eeca-4e31-b7d8-fd82f9a06699" + ], + "request-id": [ + "1384e9cf-eeca-4e31-b7d8-fd82f9a06699" + ], + "elapsed-time": [ + "230" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "24ae464c-f9c8-4ca9-8c7c-bc88538c379c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173904Z:24ae464c-f9c8-4ca9-8c7c-bc88538c379c" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('nonexistent')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnbm9uZXhpc3RlbnQnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "155a6f61-9aa4-414a-b620-f64f9dfc1a71" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "67E38AAADACD1C91BDA9022BFACA1992" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'nonexistent' was found in service 'azs-3401'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "106" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Content-Language": [ + "en" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "155a6f61-9aa4-414a-b620-f64f9dfc1a71" + ], + "elapsed-time": [ + "9" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet661/providers/Microsoft.Search/searchServices/azs-3401?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTM0MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cfc39d1-d063-4244-bcb1-8e8d3c2355d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:39:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1cfc39d1-d063-4244-bcb1-8e8d3c2355d5" + ], + "request-id": [ + "1cfc39d1-d063-4244-bcb1-8e8d3c2355d5" + ], + "elapsed-time": [ + "1057" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "168de8c6-10d7-4cfd-b597-8e382b6a483f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173910Z:168de8c6-10d7-4cfd-b597-8e382b6a483f" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet661" + ], + "GenerateServiceName": [ + "azs-3401" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsTrueForExistingSkillset.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsTrueForExistingSkillset.json new file mode 100644 index 000000000000..a66b5236987e --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/ExistsReturnsTrueForExistingSkillset.json @@ -0,0 +1,588 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71867c30-d7fc-4baa-8c04-e0893b3fb7a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1155" + ], + "x-ms-request-id": [ + "e7ef1fbd-032d-4177-825b-2d2fdab8511a" + ], + "x-ms-correlation-request-id": [ + "e7ef1fbd-032d-4177-825b-2d2fdab8511a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173639Z:e7ef1fbd-032d-4177-825b-2d2fdab8511a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9578?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NTc4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "222232cb-e246-460e-abc9-648aef39a813" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9578\",\r\n \"name\": \"azsmnet9578\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1154" + ], + "x-ms-request-id": [ + "e4b13296-2050-4c10-9422-3e38b8171299" + ], + "x-ms-correlation-request-id": [ + "e4b13296-2050-4c10-9422-3e38b8171299" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173640Z:e4b13296-2050-4c10-9422-3e38b8171299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9578/providers/Microsoft.Search/searchServices/azs-1579?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTc5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "2f9581bc-f168-4395-bde5-10c849b5f352" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9578/providers/Microsoft.Search/searchServices/azs-1579\",\r\n \"name\": \"azs-1579\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A36%3A43.9361705Z'\"" + ], + "x-ms-request-id": [ + "2f9581bc-f168-4395-bde5-10c849b5f352" + ], + "request-id": [ + "2f9581bc-f168-4395-bde5-10c849b5f352" + ], + "elapsed-time": [ + "1004" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" + ], + "x-ms-correlation-request-id": [ + "75ed3331-0af2-417b-a2c3-77a2c85c1337" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173644Z:75ed3331-0af2-417b-a2c3-77a2c85c1337" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9578/providers/Microsoft.Search/searchServices/azs-1579/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTc5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "273c0d22-8427-4ef3-a759-6d9bf446c1bf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"5AEA1CB2D4FFA0A32D3257185CF3A092\",\r\n \"secondaryKey\": \"C8EAF43D55CE04BE48A30F28D013280E\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "273c0d22-8427-4ef3-a759-6d9bf446c1bf" + ], + "request-id": [ + "273c0d22-8427-4ef3-a759-6d9bf446c1bf" + ], + "elapsed-time": [ + "270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1170" + ], + "x-ms-correlation-request-id": [ + "5993088f-e3c7-4bb7-8357-e0796e66a8bc" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173646Z:5993088f-e3c7-4bb7-8357-e0796e66a8bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9578/providers/Microsoft.Search/searchServices/azs-1579/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTc5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "816e88af-ff10-426a-8528-718cd224966a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"DAD3356BAA777228EF53A1550DF2D766\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "816e88af-ff10-426a-8528-718cd224966a" + ], + "request-id": [ + "816e88af-ff10-426a-8528-718cd224966a" + ], + "elapsed-time": [ + "312" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "6821630b-96eb-4463-b3ff-2b6acb16f366" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173647Z:6821630b-96eb-4463-b3ff-2b6acb16f366" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet8163\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "691" + ], + "client-request-id": [ + "12f35e91-a3be-4d19-ae48-925efc36a836" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "5AEA1CB2D4FFA0A32D3257185CF3A092" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1579.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E34B792EA\\\"\",\r\n \"name\": \"azsmnet8163\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "583" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E34B792EA\"" + ], + "Location": [ + "https://azs-1579.search-dogfood.windows-int.net/skillsets('azsmnet8163')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "12f35e91-a3be-4d19-ae48-925efc36a836" + ], + "elapsed-time": [ + "93" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('azsmnet8163')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDgxNjMnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "6e1c22b3-552a-4f92-b7ea-eb3ad5402503" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "5AEA1CB2D4FFA0A32D3257185CF3A092" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1579.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E34B792EA\\\"\",\r\n \"name\": \"azsmnet8163\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"handwritten\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E34B792EA\"" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "6e1c22b3-552a-4f92-b7ea-eb3ad5402503" + ], + "elapsed-time": [ + "28" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('azsmnet8163')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDgxNjMnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "479bc51a-2abb-42f3-a090-edca27aeb6e3" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "5AEA1CB2D4FFA0A32D3257185CF3A092" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "479bc51a-2abb-42f3-a090-edca27aeb6e3" + ], + "elapsed-time": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9578/providers/Microsoft.Search/searchServices/azs-1579?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTc5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b07570d-27be-4dce-8962-23059790fac0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2b07570d-27be-4dce-8962-23059790fac0" + ], + "request-id": [ + "2b07570d-27be-4dce-8962-23059790fac0" + ], + "elapsed-time": [ + "1652" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "18e8c524-6375-4f81-b40b-acf334bc55f0" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173653Z:18e8c524-6375-4f81-b40b-acf334bc55f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet9578", + "azsmnet8163" + ], + "GenerateServiceName": [ + "azs-1579" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetNerSkillsetReturnsCorrectDefinitionWithDefaultValues.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetNerSkillsetReturnsCorrectDefinitionWithDefaultValues.json new file mode 100644 index 000000000000..7505730d33a9 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetNerSkillsetReturnsCorrectDefinitionWithDefaultValues.json @@ -0,0 +1,587 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3050c97-7f35-4ddf-91cf-adcc5dc2a52c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:43:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "ae61fade-8b68-45aa-bb1e-653bcf79665a" + ], + "x-ms-correlation-request-id": [ + "ae61fade-8b68-45aa-bb1e-653bcf79665a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T224337Z:ae61fade-8b68-45aa-bb1e-653bcf79665a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2418?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNDE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "8b506de9-75bf-4e06-9103-d5780a3d6264" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2418\",\r\n \"name\": \"azsmnet2418\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:43:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "66bf1a17-c526-4333-9372-8611bbea6a81" + ], + "x-ms-correlation-request-id": [ + "66bf1a17-c526-4333-9372-8611bbea6a81" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T224338Z:66bf1a17-c526-4333-9372-8611bbea6a81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2418/providers/Microsoft.Search/searchServices/azs-6962?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTYyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "ecd2b237-b152-4be7-a122-f781ca29c3f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2418/providers/Microsoft.Search/searchServices/azs-6962\",\r\n \"name\": \"azs-6962\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:43:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-06-28T22%3A43%3A49.0796431Z'\"" + ], + "x-ms-request-id": [ + "ecd2b237-b152-4be7-a122-f781ca29c3f0" + ], + "request-id": [ + "ecd2b237-b152-4be7-a122-f781ca29c3f0" + ], + "elapsed-time": [ + "2575" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "605ba923-cfd1-4326-a250-3c4e1169b39c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T224349Z:605ba923-cfd1-4326-a250-3c4e1169b39c" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2418/providers/Microsoft.Search/searchServices/azs-6962/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTYyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cca3dcf-c632-4263-87c5-694a40e58ec2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"EF2F2426E4F7EE5F0207F71CE1136EFC\",\r\n \"secondaryKey\": \"BF2FB01F97699684E5E47F921D2D8840\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:43:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7cca3dcf-c632-4263-87c5-694a40e58ec2" + ], + "request-id": [ + "7cca3dcf-c632-4263-87c5-694a40e58ec2" + ], + "elapsed-time": [ + "135" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "43e33694-4f39-4a21-850d-e55b001bad24" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T224356Z:43e33694-4f39-4a21-850d-e55b001bad24" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2418/providers/Microsoft.Search/searchServices/azs-6962/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTYyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7742262-8bf5-44fb-ad16-6323d9cab899" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"6D31E4A5497FB272979E138E9C8BD873\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:43:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d7742262-8bf5-44fb-ad16-6323d9cab899" + ], + "request-id": [ + "d7742262-8bf5-44fb-ad16-6323d9cab899" + ], + "elapsed-time": [ + "202" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "7a39eeff-55cb-4997-81ea-3fdc59471bcf" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T224357Z:7a39eeff-55cb-4997-81ea-3fdc59471bcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1142" + ], + "client-request-id": [ + "232036f1-4aa6-45a7-86eb-7c77cae5d002" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EF2F2426E4F7EE5F0207F71CE1136EFC" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6962.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5DD48A99276C5\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ],\r\n \"categories\": [],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "882" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:44:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5DD48A99276C5\"" + ], + "Location": [ + "https://azs-6962.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "232036f1-4aa6-45a7-86eb-7c77cae5d002" + ], + "elapsed-time": [ + "116" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "623554cc-1154-4045-9bac-3736ab590ae0" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EF2F2426E4F7EE5F0207F71CE1136EFC" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6962.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5DD48A99276C5\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ],\r\n \"categories\": [\r\n \"Location\",\r\n \"Organization\",\r\n \"Person\"\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:44:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5DD48A99276C5\"" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "623554cc-1154-4045-9bac-3736ab590ae0" + ], + "elapsed-time": [ + "17" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2ed66313-5592-4317-8d8e-3988396963c3" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "EF2F2426E4F7EE5F0207F71CE1136EFC" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:44:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "2ed66313-5592-4317-8d8e-3988396963c3" + ], + "elapsed-time": [ + "184" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2418/providers/Microsoft.Search/searchServices/azs-6962?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNDE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTYyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6abb9991-645d-4ce0-bb5f-b0a35afa737e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:44:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6abb9991-645d-4ce0-bb5f-b0a35afa737e" + ], + "request-id": [ + "6abb9991-645d-4ce0-bb5f-b0a35afa737e" + ], + "elapsed-time": [ + "2251" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "03e75618-1346-437e-81b7-070e0e6713db" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T224448Z:03e75618-1346-437e-81b7-070e0e6713db" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet2418" + ], + "GenerateServiceName": [ + "azs-6962" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrNerSkillsetReturnsCorrectDefinition.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrNerSkillsetReturnsCorrectDefinition.json new file mode 100644 index 000000000000..27ff4519b066 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrNerSkillsetReturnsCorrectDefinition.json @@ -0,0 +1,587 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6199b23-ecf6-4ed5-94d5-2107d2b318fe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "8815e008-f813-4e66-add7-525a62abd52b" + ], + "x-ms-correlation-request-id": [ + "8815e008-f813-4e66-add7-525a62abd52b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T222302Z:8815e008-f813-4e66-add7-525a62abd52b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9275?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5Mjc1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "e32a5bff-def4-4a74-9509-0c77bfd5752e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9275\",\r\n \"name\": \"azsmnet9275\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "b3be01d2-f1bf-4846-a7cd-567f2fc7c60e" + ], + "x-ms-correlation-request-id": [ + "b3be01d2-f1bf-4846-a7cd-567f2fc7c60e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T222303Z:b3be01d2-f1bf-4846-a7cd-567f2fc7c60e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9275/providers/Microsoft.Search/searchServices/azs-379?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5Mjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "ef983147-6688-4f54-af1d-578011ef532b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9275/providers/Microsoft.Search/searchServices/azs-379\",\r\n \"name\": \"azs-379\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "383" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-06-28T22%3A23%3A12.4669125Z'\"" + ], + "x-ms-request-id": [ + "ef983147-6688-4f54-af1d-578011ef532b" + ], + "request-id": [ + "ef983147-6688-4f54-af1d-578011ef532b" + ], + "elapsed-time": [ + "3596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "50d2b4e1-741f-4cbe-8dc8-d2f2e11e2ace" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T222313Z:50d2b4e1-741f-4cbe-8dc8-d2f2e11e2ace" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9275/providers/Microsoft.Search/searchServices/azs-379/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5Mjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzkvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1aaf06c9-0321-4bc9-8b45-21e07ee9ed00" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"55820427F8B324B0F536F174F2FC80A9\",\r\n \"secondaryKey\": \"85B486E04672A185151CB1A4EDC05D93\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1aaf06c9-0321-4bc9-8b45-21e07ee9ed00" + ], + "request-id": [ + "1aaf06c9-0321-4bc9-8b45-21e07ee9ed00" + ], + "elapsed-time": [ + "644" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "55364c4c-8c49-4b3f-ae90-9d2cc50c3e73" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T222315Z:55364c4c-8c49-4b3f-ae90-9d2cc50c3e73" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9275/providers/Microsoft.Search/searchServices/azs-379/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5Mjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzkvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "443e83fc-45a3-40b9-a61f-8038b7f9a6fc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"B0D223AD7D7B540FA3BE77E3F2ADFC92\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "443e83fc-45a3-40b9-a61f-8038b7f9a6fc" + ], + "request-id": [ + "443e83fc-45a3-40b9-a61f-8038b7f9a6fc" + ], + "elapsed-time": [ + "667" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "fc0cf174-4566-4cfc-ad07-54844cc646b1" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T222316Z:fc0cf174-4566-4cfc-ad07-54844cc646b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ]\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1142" + ], + "client-request-id": [ + "879e1a1e-fd6e-4ab1-bf07-8503867a058a" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "55820427F8B324B0F536F174F2FC80A9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-379.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5DD45BFD2B556\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ],\r\n \"categories\": [],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": null\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "881" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5DD45BFD2B556\"" + ], + "Location": [ + "https://azs-379.search-dogfood.windows-int.net/skillsets('testskillset')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "879e1a1e-fd6e-4ab1-bf07-8503867a058a" + ], + "elapsed-time": [ + "214" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b8d5db75-4963-4d2d-8f46-04b1e2e93091" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "55820427F8B324B0F536F174F2FC80A9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-379.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5DD45BFD2B556\\\"\",\r\n \"name\": \"testskillset\",\r\n \"description\": \"Skillset for testing\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n },\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Text.NamedEntityRecognitionSkill\",\r\n \"description\": \"Tested Named Entity Recognition skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"source\": \"/document/mytext\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"entities\",\r\n \"targetName\": \"myEntities\"\r\n }\r\n ],\r\n \"categories\": [\r\n \"Location\",\r\n \"Organization\",\r\n \"Person\"\r\n ],\r\n \"defaultLanguageCode\": \"en\",\r\n \"minimumPrecision\": 0.5\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5DD45BFD2B556\"" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "b8d5db75-4963-4d2d-8f46-04b1e2e93091" + ], + "elapsed-time": [ + "37" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('testskillset')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGVzdHNraWxsc2V0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "cc08f99b-0292-4670-97ed-dd07985ed026" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "55820427F8B324B0F536F174F2FC80A9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "cc08f99b-0292-4670-97ed-dd07985ed026" + ], + "elapsed-time": [ + "23" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9275/providers/Microsoft.Search/searchServices/azs-379?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5Mjc1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNzk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfae7743-3bd5-4cc7-9354-bd48c69b5b3d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 22:23:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cfae7743-3bd5-4cc7-9354-bd48c69b5b3d" + ], + "request-id": [ + "cfae7743-3bd5-4cc7-9354-bd48c69b5b3d" + ], + "elapsed-time": [ + "917" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "cef36a3a-9f4d-4564-8211-0f3db8259677" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T222323Z:cef36a3a-9f4d-4564-8211-0f3db8259677" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet9275" + ], + "GenerateServiceName": [ + "azs-379" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetReturnsCorrectDefinition.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetReturnsCorrectDefinition.json new file mode 100644 index 000000000000..cf3487c92b04 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetReturnsCorrectDefinition.json @@ -0,0 +1,588 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6298011-a4be-4734-81af-f239e72dcd15" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1167" + ], + "x-ms-request-id": [ + "b7d21e1c-078e-4e8d-ac10-3646b86e8e57" + ], + "x-ms-correlation-request-id": [ + "b7d21e1c-078e-4e8d-ac10-3646b86e8e57" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173739Z:b7d21e1c-078e-4e8d-ac10-3646b86e8e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2109?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMTA5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "1a4fe27e-040a-49d6-9c6f-3209ccc1056d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2109\",\r\n \"name\": \"azsmnet2109\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1166" + ], + "x-ms-request-id": [ + "8d135f65-f77a-4753-9059-f11002eb90af" + ], + "x-ms-correlation-request-id": [ + "8d135f65-f77a-4753-9059-f11002eb90af" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173739Z:8d135f65-f77a-4753-9059-f11002eb90af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2109/providers/Microsoft.Search/searchServices/azs-1309?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "e6d178ef-20f5-465c-8b43-fb894708a662" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2109/providers/Microsoft.Search/searchServices/azs-1309\",\r\n \"name\": \"azs-1309\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A37%3A43.3190097Z'\"" + ], + "x-ms-request-id": [ + "e6d178ef-20f5-465c-8b43-fb894708a662" + ], + "request-id": [ + "e6d178ef-20f5-465c-8b43-fb894708a662" + ], + "elapsed-time": [ + "1272" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1163" + ], + "x-ms-correlation-request-id": [ + "f73b45e0-1d97-48be-b3e5-40cfeed983a5" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173743Z:f73b45e0-1d97-48be-b3e5-40cfeed983a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2109/providers/Microsoft.Search/searchServices/azs-1309/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzA5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8ae9699-1f41-493e-9053-6a339f33869b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"9BE270474FD6F8B8F8C7E5FE9D2330D9\",\r\n \"secondaryKey\": \"F404D39FA5574724BD89682BF6088E89\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f8ae9699-1f41-493e-9053-6a339f33869b" + ], + "request-id": [ + "f8ae9699-1f41-493e-9053-6a339f33869b" + ], + "elapsed-time": [ + "180" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1162" + ], + "x-ms-correlation-request-id": [ + "2683b1b7-4c3e-4783-9552-97e663aa2121" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173745Z:2683b1b7-4c3e-4783-9552-97e663aa2121" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2109/providers/Microsoft.Search/searchServices/azs-1309/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzA5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a1ef611-5c63-4ea0-acc8-84f73d5225b2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3B819E7D401A7FCF957F90D65E90A366\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9a1ef611-5c63-4ea0-acc8-84f73d5225b2" + ], + "request-id": [ + "9a1ef611-5c63-4ea0-acc8-84f73d5225b2" + ], + "elapsed-time": [ + "260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "65c0e3a6-3e20-415d-9fd3-f1add135086c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173746Z:65c0e3a6-3e20-415d-9fd3-f1add135086c" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet1770\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "687" + ], + "client-request-id": [ + "8da6b1ce-b2fe-4a9b-ac5f-03feb8fd300b" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "9BE270474FD6F8B8F8C7E5FE9D2330D9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1309.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E57B74EBF\\\"\",\r\n \"name\": \"azsmnet1770\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E57B74EBF\"" + ], + "Location": [ + "https://azs-1309.search-dogfood.windows-int.net/skillsets('azsmnet1770')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "8da6b1ce-b2fe-4a9b-ac5f-03feb8fd300b" + ], + "elapsed-time": [ + "47" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('azsmnet1770')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE3NzAnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "5af83da5-a3a1-4e2b-b551-b3e5d8f0626f" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "9BE270474FD6F8B8F8C7E5FE9D2330D9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1309.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E57B74EBF\\\"\",\r\n \"name\": \"azsmnet1770\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E57B74EBF\"" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "5af83da5-a3a1-4e2b-b551-b3e5d8f0626f" + ], + "elapsed-time": [ + "23" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('azsmnet1770')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDE3NzAnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b6b5a921-6d67-47fc-b6ae-20b50cf77e00" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "9BE270474FD6F8B8F8C7E5FE9D2330D9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "b6b5a921-6d67-47fc-b6ae-20b50cf77e00" + ], + "elapsed-time": [ + "28" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2109/providers/Microsoft.Search/searchServices/azs-1309?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzA5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c36cce33-ac9f-4ce2-a02c-eb6a642eeac0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c36cce33-ac9f-4ce2-a02c-eb6a642eeac0" + ], + "request-id": [ + "c36cce33-ac9f-4ce2-a02c-eb6a642eeac0" + ], + "elapsed-time": [ + "948" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "94fa3ab2-1026-459d-82f2-4d3c339df8c5" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173752Z:94fa3ab2-1026-459d-82f2-4d3c339df8c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet2109", + "azsmnet1770" + ], + "GenerateServiceName": [ + "azs-1309" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json new file mode 100644 index 000000000000..46a63eecc67e --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json @@ -0,0 +1,588 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a693707-b192-49da-977a-43707f2b9f06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1169" + ], + "x-ms-request-id": [ + "2861e276-43ab-442d-a7eb-49b3092813c2" + ], + "x-ms-correlation-request-id": [ + "2861e276-43ab-442d-a7eb-49b3092813c2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173719Z:2861e276-43ab-442d-a7eb-49b3092813c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4166?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MTY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "699e54b8-116d-4675-b996-c9e592510982" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4166\",\r\n \"name\": \"azsmnet4166\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1168" + ], + "x-ms-request-id": [ + "06c3cf61-28dc-4a76-991a-bde67d86d75b" + ], + "x-ms-correlation-request-id": [ + "06c3cf61-28dc-4a76-991a-bde67d86d75b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173720Z:06c3cf61-28dc-4a76-991a-bde67d86d75b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4166/providers/Microsoft.Search/searchServices/azs-8587?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MTY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NTg3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "3e620390-c836-4e40-88ca-06c58cc37313" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4166/providers/Microsoft.Search/searchServices/azs-8587\",\r\n \"name\": \"azs-8587\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A37%3A24.5080111Z'\"" + ], + "x-ms-request-id": [ + "3e620390-c836-4e40-88ca-06c58cc37313" + ], + "request-id": [ + "3e620390-c836-4e40-88ca-06c58cc37313" + ], + "elapsed-time": [ + "1443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1165" + ], + "x-ms-correlation-request-id": [ + "10239c9d-cdb9-4a99-beca-8023cf795de2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173726Z:10239c9d-cdb9-4a99-beca-8023cf795de2" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4166/providers/Microsoft.Search/searchServices/azs-8587/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MTY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NTg3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc279a2b-a717-498a-8d16-db944e4b3c5f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"7A8B41F03557F0490E935FEB9B7165B9\",\r\n \"secondaryKey\": \"31354B80068C581A7DA294758FF605B0\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fc279a2b-a717-498a-8d16-db944e4b3c5f" + ], + "request-id": [ + "fc279a2b-a717-498a-8d16-db944e4b3c5f" + ], + "elapsed-time": [ + "221" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1164" + ], + "x-ms-correlation-request-id": [ + "74c96c93-caa1-4974-95da-4d24cf229d70" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173727Z:74c96c93-caa1-4974-95da-4d24cf229d70" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4166/providers/Microsoft.Search/searchServices/azs-8587/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MTY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NTg3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62be8dcf-1f31-4a7e-acaa-44314947707f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BFB2BE6EC906CFCCEBF4AFDB56B23EE4\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "62be8dcf-1f31-4a7e-acaa-44314947707f" + ], + "request-id": [ + "62be8dcf-1f31-4a7e-acaa-44314947707f" + ], + "elapsed-time": [ + "271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "f07dd99d-1544-46aa-a29b-307591f49a45" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173728Z:f07dd99d-1544-46aa-a29b-307591f49a45" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet7228\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "686" + ], + "client-request-id": [ + "6d49c034-22ce-49e6-b83d-007dd4cd699f" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7A8B41F03557F0490E935FEB9B7165B9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8587.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E4D70CCAA\\\"\",\r\n \"name\": \"azsmnet7228\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": null,\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E4D70CCAA\"" + ], + "Location": [ + "https://azs-8587.search-dogfood.windows-int.net/skillsets('azsmnet7228')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "6d49c034-22ce-49e6-b83d-007dd4cd699f" + ], + "elapsed-time": [ + "80" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('azsmnet7228')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDcyMjgnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "f7dc9907-9a4a-4ec1-8a97-e11f6c96a6d3" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7A8B41F03557F0490E935FEB9B7165B9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-8587.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5ED9E4D70CCAA\\\"\",\r\n \"name\": \"azsmnet7228\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"lineEnding\": \"Space\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5ED9E4D70CCAA\"" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "f7dc9907-9a4a-4ec1-8a97-e11f6c96a6d3" + ], + "elapsed-time": [ + "44" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('azsmnet7228')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDcyMjgnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "b632affd-3316-45d6-8bcc-0724ed11ac09" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "7A8B41F03557F0490E935FEB9B7165B9" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "b632affd-3316-45d6-8bcc-0724ed11ac09" + ], + "elapsed-time": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4166/providers/Microsoft.Search/searchServices/azs-8587?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MTY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NTg3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48faefc3-6f5f-4571-aeb5-6ee3152a444b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:37:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "48faefc3-6f5f-4571-aeb5-6ee3152a444b" + ], + "request-id": [ + "48faefc3-6f5f-4571-aeb5-6ee3152a444b" + ], + "elapsed-time": [ + "703" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "1a333108-2aed-4355-a709-ae48f971d8fd" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173734Z:1a333108-2aed-4355-a709-ae48f971d8fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet4166", + "azsmnet7228" + ], + "GenerateServiceName": [ + "azs-8587" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetReturnsCorrectDefinition.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetReturnsCorrectDefinition.json new file mode 100644 index 000000000000..ba67f531f9f5 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetReturnsCorrectDefinition.json @@ -0,0 +1,588 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdb575ec-4fda-4653-8427-7d86f599b0e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-request-id": [ + "f328a62f-17d7-4040-9363-aca120b4c897" + ], + "x-ms-correlation-request-id": [ + "f328a62f-17d7-4040-9363-aca120b4c897" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211133Z:f328a62f-17d7-4040-9363-aca120b4c897" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7724?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NzI0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "473f291c-be8a-4d5a-ad01-f8e4bad0145e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7724\",\r\n \"name\": \"azsmnet7724\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-request-id": [ + "cb3dcd66-0f10-4a13-b279-a0a74f295a93" + ], + "x-ms-correlation-request-id": [ + "cb3dcd66-0f10-4a13-b279-a0a74f295a93" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211134Z:cb3dcd66-0f10-4a13-b279-a0a74f295a93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7724/providers/Microsoft.Search/searchServices/azs-6135?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MTM1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "5a56746d-7bd4-4694-834d-d445c856a6e0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7724/providers/Microsoft.Search/searchServices/azs-6135\",\r\n \"name\": \"azs-6135\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-06-28T21%3A11%3A38.1628631Z'\"" + ], + "x-ms-request-id": [ + "5a56746d-7bd4-4694-834d-d445c856a6e0" + ], + "request-id": [ + "5a56746d-7bd4-4694-834d-d445c856a6e0" + ], + "elapsed-time": [ + "2108" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "2a6dc8ec-e8d9-402c-8b74-98dc84586d7b" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211138Z:2a6dc8ec-e8d9-402c-8b74-98dc84586d7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7724/providers/Microsoft.Search/searchServices/azs-6135/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MTM1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b1de49f-ee3e-4974-bb27-f3acbb58d364" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"4D151B3207D944DEBBC8D4639D206FA8\",\r\n \"secondaryKey\": \"8BC3F0B004CA078CD7C3D612DB919BF1\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3b1de49f-ee3e-4974-bb27-f3acbb58d364" + ], + "request-id": [ + "3b1de49f-ee3e-4974-bb27-f3acbb58d364" + ], + "elapsed-time": [ + "272" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "bf7a6f23-2e21-4de4-9524-ff1780e46889" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211141Z:bf7a6f23-2e21-4de4-9524-ff1780e46889" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7724/providers/Microsoft.Search/searchServices/azs-6135/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MTM1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bb8dac6-9ddf-4083-a4f6-57d7975bea59" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"F317C0EA749681AAE9C76963431615EA\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3bb8dac6-9ddf-4083-a4f6-57d7975bea59" + ], + "request-id": [ + "3bb8dac6-9ddf-4083-a4f6-57d7975bea59" + ], + "elapsed-time": [ + "453" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "feffb989-de5b-4918-bc15-73aa34073279" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211142Z:feffb989-de5b-4918-bc15-73aa34073279" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet9926\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "687" + ], + "client-request-id": [ + "e6f0b5a1-5af1-49e2-b7b6-15b99e4055e6" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "4D151B3207D944DEBBC8D4639D206FA8" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6135.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5DD3BC07487A1\\\"\",\r\n \"name\": \"azsmnet9926\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "561" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5DD3BC07487A1\"" + ], + "Location": [ + "https://azs-6135.search-dogfood.windows-int.net/skillsets('azsmnet9926')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "e6f0b5a1-5af1-49e2-b7b6-15b99e4055e6" + ], + "elapsed-time": [ + "73" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('azsmnet9926')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDk5MjYnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "2a292b82-16fb-4e37-854d-e76afd8d1969" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "4D151B3207D944DEBBC8D4639D206FA8" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6135.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5DD3BC07487A1\\\"\",\r\n \"name\": \"azsmnet9926\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": false\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5DD3BC07487A1\"" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "2a292b82-16fb-4e37-854d-e76afd8d1969" + ], + "elapsed-time": [ + "26" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('azsmnet9926')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDk5MjYnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "611f6e70-398e-4fe9-9e75-ce3b50136aee" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "4D151B3207D944DEBBC8D4639D206FA8" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "611f6e70-398e-4fe9-9e75-ce3b50136aee" + ], + "elapsed-time": [ + "21" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7724/providers/Microsoft.Search/searchServices/azs-6135?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MTM1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0ac26c5-c065-4266-b783-6c2f4282503d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d0ac26c5-c065-4266-b783-6c2f4282503d" + ], + "request-id": [ + "d0ac26c5-c065-4266-b783-6c2f4282503d" + ], + "elapsed-time": [ + "731" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "e2fb9536-1806-46f0-a966-942384fc7a1e" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211148Z:e2fb9536-1806-46f0-a966-942384fc7a1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet7724", + "azsmnet9926" + ], + "GenerateServiceName": [ + "azs-6135" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetReturnsCorrectDefinitionWithShouldDetectOrientationSet.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetReturnsCorrectDefinitionWithShouldDetectOrientationSet.json new file mode 100644 index 000000000000..7990831d3694 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetReturnsCorrectDefinitionWithShouldDetectOrientationSet.json @@ -0,0 +1,588 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e341621-90a3-4e84-94da-dc98e24dc326" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:10:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-request-id": [ + "586caf98-1eab-4418-9192-92655e61a8b5" + ], + "x-ms-correlation-request-id": [ + "586caf98-1eab-4418-9192-92655e61a8b5" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211056Z:586caf98-1eab-4418-9192-92655e61a8b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9062?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MDYyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "5d28fda9-adf7-4af8-8bd1-a11e3c0f61bd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9062\",\r\n \"name\": \"azsmnet9062\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:10:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-request-id": [ + "37b5182d-00c2-4076-b13b-573ea466ea06" + ], + "x-ms-correlation-request-id": [ + "37b5182d-00c2-4076-b13b-573ea466ea06" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211057Z:37b5182d-00c2-4076-b13b-573ea466ea06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9062/providers/Microsoft.Search/searchServices/azs-5539?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTM5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "434ebb3c-51a4-4ece-92a8-dbb5963747b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9062/providers/Microsoft.Search/searchServices/azs-5539\",\r\n \"name\": \"azs-5539\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-06-28T21%3A11%3A00.5268038Z'\"" + ], + "x-ms-request-id": [ + "434ebb3c-51a4-4ece-92a8-dbb5963747b9" + ], + "request-id": [ + "434ebb3c-51a4-4ece-92a8-dbb5963747b9" + ], + "elapsed-time": [ + "1337" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-correlation-request-id": [ + "20e670f2-d73b-4454-b0a2-15e272417891" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211101Z:20e670f2-d73b-4454-b0a2-15e272417891" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9062/providers/Microsoft.Search/searchServices/azs-5539/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTM5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e00cc76-b832-41b8-a903-5573792ddb7d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"591AE01DDDD78B9AC8A3B385F7F2FCA1\",\r\n \"secondaryKey\": \"AA97E11B37BEDD07C92E9F372EC397DA\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8e00cc76-b832-41b8-a903-5573792ddb7d" + ], + "request-id": [ + "8e00cc76-b832-41b8-a903-5573792ddb7d" + ], + "elapsed-time": [ + "197" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1173" + ], + "x-ms-correlation-request-id": [ + "f894a280-d962-42dc-aa6d-f7c10d412a8f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211103Z:f894a280-d962-42dc-aa6d-f7c10d412a8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9062/providers/Microsoft.Search/searchServices/azs-5539/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTM5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "289688f9-bc5f-4c2d-94be-5a3ddec1620e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"18E93BE87884A34ACE580DD13E186D10\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "289688f9-bc5f-4c2d-94be-5a3ddec1620e" + ], + "request-id": [ + "289688f9-bc5f-4c2d-94be-5a3ddec1620e" + ], + "elapsed-time": [ + "193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "c2d79ab6-dcd8-48d6-ae86-152cb6b9e0c4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211104Z:c2d79ab6-dcd8-48d6-ae86-152cb6b9e0c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cz9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet7478\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true,\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "686" + ], + "client-request-id": [ + "fe86c08d-7178-495e-91c7-cec4d0a20f68" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "591AE01DDDD78B9AC8A3B385F7F2FCA1" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5539.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5DD3BA9500415\\\"\",\r\n \"name\": \"azsmnet7478\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "560" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5DD3BA9500415\"" + ], + "Location": [ + "https://azs-5539.search-dogfood.windows-int.net/skillsets('azsmnet7478')?api-version=2017-11-11-Preview" + ], + "request-id": [ + "fe86c08d-7178-495e-91c7-cec4d0a20f68" + ], + "elapsed-time": [ + "39" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/skillsets('azsmnet7478')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc0NzgnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "060f04b9-6850-4df4-b8b9-318d73c3d563" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "591AE01DDDD78B9AC8A3B385F7F2FCA1" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-5539.search-dogfood.windows-int.net/$metadata#skillsets/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D5DD3BA9500415\\\"\",\r\n \"name\": \"azsmnet7478\",\r\n \"description\": \"Skillset for testing OCR\",\r\n \"skills\": [\r\n {\r\n \"@odata.type\": \"#Microsoft.Skills.Vision.OcrSkill\",\r\n \"description\": \"Tested OCR skill\",\r\n \"context\": \"/document\",\r\n \"inputs\": [\r\n {\r\n \"name\": \"url\",\r\n \"source\": \"/document/url\"\r\n },\r\n {\r\n \"name\": \"queryString\",\r\n \"source\": \"/document/queryString\"\r\n }\r\n ],\r\n \"outputs\": [\r\n {\r\n \"name\": \"text\",\r\n \"targetName\": \"mytext0\"\r\n }\r\n ],\r\n \"textExtractionAlgorithm\": \"printed\",\r\n \"defaultLanguageCode\": \"en\",\r\n \"detectOrientation\": true\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D5DD3BA9500415\"" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "060f04b9-6850-4df4-b8b9-318d73c3d563" + ], + "elapsed-time": [ + "18" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('azsmnet7478')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygnYXpzbW5ldDc0NzgnKT9hcGktdmVyc2lvbj0yMDE3LTExLTExLVByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "687b7490-e572-48ce-95bc-7653393730f0" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "591AE01DDDD78B9AC8A3B385F7F2FCA1" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "687b7490-e572-48ce-95bc-7653393730f0" + ], + "elapsed-time": [ + "24" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9062/providers/Microsoft.Search/searchServices/azs-5539?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MDYyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NTM5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8577e89-613c-4531-8b09-1523c531cdae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 28 Jun 2018 21:11:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c8577e89-613c-4531-8b09-1523c531cdae" + ], + "request-id": [ + "c8577e89-613c-4531-8b09-1523c531cdae" + ], + "elapsed-time": [ + "720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "e9969b44-13ab-4671-9c78-dc6155423f3f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180628T211109Z:e9969b44-13ab-4671-9c78-dc6155423f3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet9062", + "azsmnet7478" + ], + "GenerateServiceName": [ + "azs-5539" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetThrowsOnNotFound.json b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetThrowsOnNotFound.json new file mode 100644 index 000000000000..a32d320143be --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SkillsetsTests/GetSkillsetThrowsOnNotFound.json @@ -0,0 +1,471 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7c4404c-1232-4a6b-b77c-ce2804d3be92" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\",\r\n \"managedByRoleDefinitionId\": \"C1F73CCC-13F1-4BA3-BA60-A373C0A3EE0C\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesEXP\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityEXP\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1159" + ], + "x-ms-request-id": [ + "cf54dda6-fb3f-4196-a5d4-84614ce3be77" + ], + "x-ms-correlation-request-id": [ + "cf54dda6-fb3f-4196-a5d4-84614ce3be77" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173618Z:cf54dda6-fb3f-4196-a5d4-84614ce3be77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1573?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNTczP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "19352b64-0a42-4312-b537-91217c299c17" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1573\",\r\n \"name\": \"azsmnet1573\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1158" + ], + "x-ms-request-id": [ + "1595b8e5-a949-449f-b458-aff36bbceaf4" + ], + "x-ms-correlation-request-id": [ + "1595b8e5-a949-449f-b458-aff36bbceaf4" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173618Z:1595b8e5-a949-449f-b458-aff36bbceaf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1573/providers/Microsoft.Search/searchServices/azs-2086?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "2697fb4e-9386-4c15-ad2e-fb3662c73582" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1573/providers/Microsoft.Search/searchServices/azs-2086\",\r\n \"name\": \"azs-2086\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2018-07-19T17%3A36%3A23.7008019Z'\"" + ], + "x-ms-request-id": [ + "2697fb4e-9386-4c15-ad2e-fb3662c73582" + ], + "request-id": [ + "2697fb4e-9386-4c15-ad2e-fb3662c73582" + ], + "elapsed-time": [ + "1868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1157" + ], + "x-ms-correlation-request-id": [ + "96449f11-a923-4954-a3dc-079a5c288b11" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173624Z:96449f11-a923-4954-a3dc-079a5c288b11" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1573/providers/Microsoft.Search/searchServices/azs-2086/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDg2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c632ed8-0091-4eab-a81a-37739bd9db68" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"ED00724269CD2E9B856CC8297B76DB6E\",\r\n \"secondaryKey\": \"F6377D0649BBEBFD616BFA1923CDD915\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7c632ed8-0091-4eab-a81a-37739bd9db68" + ], + "request-id": [ + "7c632ed8-0091-4eab-a81a-37739bd9db68" + ], + "elapsed-time": [ + "552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1156" + ], + "x-ms-correlation-request-id": [ + "55b6c500-cee7-409e-a6e2-29b38dd51ca9" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173626Z:55b6c500-cee7-409e-a6e2-29b38dd51ca9" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1573/providers/Microsoft.Search/searchServices/azs-2086/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDg2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1be5cf55-762d-43be-acb9-099d7347bc64" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BE9AA59B0CA077BA2E859C94EE5B5A4A\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1be5cf55-762d-43be-acb9-099d7347bc64" + ], + "request-id": [ + "1be5cf55-762d-43be-acb9-099d7347bc64" + ], + "elapsed-time": [ + "797" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "19cf78af-dfed-4288-9ce6-449498a19c9f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173627Z:19cf78af-dfed-4288-9ce6-449498a19c9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/skillsets('thisSkillsetdoesnotexist')?api-version=2017-11-11-Preview", + "EncodedRequestUri": "L3NraWxsc2V0cygndGhpc1NraWxsc2V0ZG9lc25vdGV4aXN0Jyk/YXBpLXZlcnNpb249MjAxNy0xMS0xMS1QcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "client-request-id": [ + "96ff8a49-e144-49dc-9115-62df6901a2e0" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "ED00724269CD2E9B856CC8297B76DB6E" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Search.SearchServiceClient/6.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"\",\r\n \"message\": \"No skillset with the name 'thisSkillsetdoesnotexist' was found in service 'azs-2086'.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" + ], + "Content-Language": [ + "en" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "request-id": [ + "96ff8a49-e144-49dc-9115-62df6901a2e0" + ], + "elapsed-time": [ + "11" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1573/providers/Microsoft.Search/searchServices/azs-2086?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b19ca53-2918-4635-bc1e-a258f7ff7ed2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 19 Jul 2018 17:36:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b19ca53-2918-4635-bc1e-a258f7ff7ed2" + ], + "request-id": [ + "1b19ca53-2918-4635-bc1e-a258f7ff7ed2" + ], + "elapsed-time": [ + "657" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "994d95a1-8d49-4c44-b9c0-d9945539f1c2" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20180719T173634Z:994d95a1-8d49-4c44-b9c0-d9945539f1c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet1573" + ], + "GenerateServiceName": [ + "azs-2086" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/Tests/IndexerTests.cs b/src/SDKs/Search/DataPlane/Search.Tests/Tests/IndexerTests.cs index 6dc35df7fd4b..ae89b439484c 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/Tests/IndexerTests.cs +++ b/src/SDKs/Search/DataPlane/Search.Tests/Tests/IndexerTests.cs @@ -106,6 +106,31 @@ public void CreateOrUpdateCreatesWhenIndexerDoesNotExist() }); } + [Fact] + public void CreateOrUpdateCreatesWhenIndexerWithSkillsetDoesNotExist() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + + Skillset skillset = SkillsetsTests.CreateTestSkillsetOcrNamedEntity(null, null); + + AzureOperationResponse response = + searchClient.Skillsets.CreateOrUpdateWithHttpMessagesAsync(skillset.Name, skillset).Result; + Assert.Equal(HttpStatusCode.Created, response.Response.StatusCode); + + Indexer indexer = Data.CreateTestIndexerWithSkillset(skillset.Name, new[] + { + new FieldMapping(sourceFieldName: "/document/myEntities", targetFieldName: "myEntities"), + new FieldMapping(sourceFieldName: "/document/myText", targetFieldName: "myText") + }); + + AzureOperationResponse response1 = + searchClient.Indexers.CreateOrUpdateWithHttpMessagesAsync(indexer).Result; + Assert.Equal(HttpStatusCode.Created, response1.Response.StatusCode); + }); + } + [Fact] public void CreateOrUpdateIndexerIfNotExistsFailsOnExistingResource() { diff --git a/src/SDKs/Search/DataPlane/Search.Tests/Tests/SkillsetsTests.cs b/src/SDKs/Search/DataPlane/Search.Tests/Tests/SkillsetsTests.cs new file mode 100644 index 000000000000..d0b3912512e2 --- /dev/null +++ b/src/SDKs/Search/DataPlane/Search.Tests/Tests/SkillsetsTests.cs @@ -0,0 +1,868 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Tests +{ + using System.Collections.Generic; + using System.Linq; + using System.Net; + using Microsoft.Azure.Search.Models; + using Microsoft.Azure.Search.Tests.Utilities; + using Microsoft.Rest.Azure; + using Xunit; + + public sealed class SkillsetsTests : SearchTestBase + { + public const string InputImageFieldName = "image"; + public const string InputUrlFieldName = "url"; + // The query string is for SAS token and it is optional + public const string InputQueryStringFieldName = "queryString"; + + public const string OutputTextFieldName = "text"; + public const string OutputLayoutTextFieldName = "layoutText"; + + public const string RootPathString = "/document"; + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionOcrKeyPhrase() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrKeyPhrase(OcrSkillLanguage.En, KeyPhraseExtractionSkillLanguage.En)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrKeyPhrase(OcrSkillLanguage.Fr, KeyPhraseExtractionSkillLanguage.Fr)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrKeyPhrase(OcrSkillLanguage.Es, KeyPhraseExtractionSkillLanguage.Es)); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionWithDefaultSettings() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateSkillsetWithOcrDefaultSettings()); + CreateAndValidateSkillset(searchClient, CreateSkillsetWithImageAnalysisDefaultSettings()); + CreateAndValidateSkillset(searchClient, CreateSkillsetWithKeyPhraseExtractionDefaultSettings()); + CreateAndValidateSkillset(searchClient, CreateSkillsetWithMergeDefaultSettings()); + CreateAndValidateSkillset(searchClient, CreateSkillsetWithNamedEntityRecognitionDefaultSettings()); + CreateAndValidateSkillset(searchClient, CreateSkillsetWithSentimentDefaultSettings()); + CreateAndValidateSkillset(searchClient, CreateSkillsetWithSplitDefaultSettings()); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSentiment(OcrSkillLanguage.Pt, SentimentSkillLanguage.PtPt)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSentiment(OcrSkillLanguage.Fi, SentimentSkillLanguage.Fi)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSentiment(OcrSkillLanguage.En, SentimentSkillLanguage.En)); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetImageAnalysisKeyPhrase()); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionLanguageDetection() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetLanguageDetection()); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionMergeText() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetMergeText()); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionOcrNamedEntity() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrNamedEntity(null, null)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrNamedEntity(TextExtractionAlgorithm.Printed, new List { NamedEntityCategory.Location, NamedEntityCategory.Organization, NamedEntityCategory.Person } )); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionOcrShaper() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrShaper()); + }); + } + + [Fact] + public void CreateSkillsetReturnsCorrectDefinitionOcrSplitText() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSplitText(OcrSkillLanguage.En, SplitSkillLanguage.En, TextSplitMode.Pages)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSplitText(OcrSkillLanguage.Fr, SplitSkillLanguage.Fr, TextSplitMode.Pages)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSplitText(OcrSkillLanguage.Fi, SplitSkillLanguage.Fi, TextSplitMode.Sentences)); + CreateAndValidateSkillset(searchClient, CreateTestSkillsetOcrSplitText(OcrSkillLanguage.Da, SplitSkillLanguage.Da, TextSplitMode.Sentences)); + }); + } + + [Fact] + public void CreateOrUpdateCreatesWhenSkillsetDoesNotExist() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + + Skillset skillset = CreateTestOcrSkillset(1, TextExtractionAlgorithm.Printed); + + AzureOperationResponse response = + searchClient.Skillsets.CreateOrUpdateWithHttpMessagesAsync(skillset.Name, skillset).Result; + Assert.Equal(HttpStatusCode.Created, response.Response.StatusCode); + }); + } + + [Fact] + public void CreateOrUpdateUpdatesWhenSkillsetExists() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + + Skillset skillset = CreateTestOcrSkillset(1, TextExtractionAlgorithm.Handwritten); + + AzureOperationResponse response = + searchClient.Skillsets.CreateOrUpdateWithHttpMessagesAsync(skillset.Name, skillset).Result; + Assert.Equal(HttpStatusCode.Created, response.Response.StatusCode); + + skillset = CreateTestOcrSkillset(2, TextExtractionAlgorithm.Printed, skillset.Name); + response = + searchClient.Skillsets.CreateOrUpdateWithHttpMessagesAsync(skillset.Name, skillset).Result; + Assert.Equal(HttpStatusCode.OK, response.Response.StatusCode); + }); + } + + [Fact] + public void GetOcrSkillsetReturnsCorrectDefinition() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndGetSkillset(searchClient, CreateTestOcrSkillset(1, TextExtractionAlgorithm.Printed)); + }); + } + + [Fact] + public void GetOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + CreateAndGetSkillset(searchClient, CreateTestOcrSkillset(repeat: 1, algorithm: TextExtractionAlgorithm.Printed, shouldDetectOrientation: true)); + }); + } + + [Fact] + public void GetSkillsetThrowsOnNotFound() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + + SearchAssert.ThrowsCloudException( + () => searchClient.Skillsets.Get("thisSkillsetdoesnotexist"), + HttpStatusCode.NotFound); + }); + } + + [Fact] + public void DeleteSkillsetIsIdempotent() + { + Run(() => + { + SearchServiceClient searchClient = Data.GetSearchServiceClient(); + + Skillset skillset = CreateTestOcrSkillset(1, TextExtractionAlgorithm.Printed); + + // Try delete before the Skillset even exists. + AzureOperationResponse deleteResponse = + searchClient.Skillsets.DeleteWithHttpMessagesAsync(skillset.Name).Result; + Assert.Equal(HttpStatusCode.NotFound, deleteResponse.Response.StatusCode); + + searchClient.Skillsets.Create(skillset); + + // Now delete twice. + deleteResponse = searchClient.Skillsets.DeleteWithHttpMessagesAsync(skillset.Name).Result; + Assert.Equal(HttpStatusCode.NoContent, deleteResponse.Response.StatusCode); + + deleteResponse = searchClient.Skillsets.DeleteWithHttpMessagesAsync(skillset.Name).Result; + Assert.Equal(HttpStatusCode.NotFound, deleteResponse.Response.StatusCode); + }); + } + + [Fact] + public void ExistsReturnsFalseForNonExistingSkillset() + { + Run(() => + { + SearchServiceClient client = Data.GetSearchServiceClient(); + Assert.False(client.Skillsets.Exists("nonexistent")); + }); + } + + [Fact] + public void ExistsReturnsTrueForExistingSkillset() + { + Run(() => + { + SearchServiceClient client = Data.GetSearchServiceClient(); + Skillset skillset = CreateTestOcrSkillset(1, TextExtractionAlgorithm.Handwritten); + + try + { + client.Skillsets.Create(skillset); + Assert.True(client.Skillsets.Exists(skillset.Name)); + } + finally + { + client.Skillsets.Delete(skillset.Name); + } + }); + } + + public static Skillset CreateTestSkillsetOcrNamedEntity(TextExtractionAlgorithm? algorithm, List categories) + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "text", TargetName = "mytext" } + }; + + skills.Add(new OcrSkill("Tested OCR skill", RootPathString, inputs, outputs) + { + TextExtractionAlgorithm = algorithm, + DefaultLanguageCode = "en" + }); + + List inputs1 = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mytext" + } + }; + + List outputs1 = new List() + { + new OutputFieldMappingEntry + { + Name = "entities", + TargetName = "myEntities" + } + }; + + skills.Add(new NamedEntityRecognitionSkill("Tested Named Entity Recognition skill", RootPathString, inputs1, outputs1) + { + Categories = categories, + DefaultLanguageCode = "en" + }); + + return new Skillset("testskillset", "Skillset for testing", skills); + } + + private void CreateAndGetSkillset(SearchServiceClient searchClient, Skillset expectedSkillset) + { + try + { + searchClient.Skillsets.Create(expectedSkillset); + Skillset actualSkillset = searchClient.Skillsets.Get(expectedSkillset.Name); + AssertSkillsetEqual(expectedSkillset, actualSkillset); + } + finally + { + searchClient.Skillsets.Delete(expectedSkillset.Name); + } + } + + private static Skillset CreateSkillsetWithOcrDefaultSettings() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "text", TargetName = "mytext" } + }; + + skills.Add(new OcrSkill("Tested OCR skill", RootPathString, inputs, outputs)); + + return new Skillset(SearchTestUtilities.GenerateName(), description: "Skillset for testing default configuration", skills: skills); + } + + private static Skillset CreateSkillsetWithImageAnalysisDefaultSettings() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "description", TargetName = "mydescription" } + }; + + skills.Add(new ImageAnalysisSkill("Tested image analysis skill", RootPathString, inputs, outputs)); + + return new Skillset(SearchTestUtilities.GenerateName(), description: "Skillset for testing default configuration", skills: skills); + } + + private static Skillset CreateSkillsetWithKeyPhraseExtractionDefaultSettings() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/myText" + } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "keyPhrases", + TargetName = "myKeyPhrases" + } + }; + + skills.Add(new KeyPhraseExtractionSkill("Tested Key Phrase skill", RootPathString, inputs, outputs)); + + return new Skillset(SearchTestUtilities.GenerateName(), description: "Skillset for testing default configuration", skills: skills); + } + + private static Skillset CreateSkillsetWithMergeDefaultSettings() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/text" + }, + new InputFieldMappingEntry + { + Name = "itemsToInsert", + Source = "/document/textitems" + }, + new InputFieldMappingEntry + { + Name = "offsets", + Source = "/document/offsets" + } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "mergedText", + TargetName = "myMergedText" + } + }; + + skills.Add(new MergeSkill("Tested Merged Text skill", RootPathString, inputs, outputs)); + + return new Skillset(SearchTestUtilities.GenerateName(), description: "Skillset for testing default configuration", skills: skills); + } + + private static Skillset CreateSkillsetWithNamedEntityRecognitionDefaultSettings() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mytext" + } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "entities", + TargetName = "myEntities" + } + }; + + skills.Add(new NamedEntityRecognitionSkill("Tested Named Entity Recognition skill", RootPathString, inputs, outputs)); + + return new Skillset(SearchTestUtilities.GenerateName(), description: "Skillset for testing default configuration", skills: skills); + } + + private static Skillset CreateSkillsetWithSentimentDefaultSettings() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mytext" + } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "score", + TargetName = "mySentiment" + } + }; + + skills.Add(new SentimentSkill("Tested Sentiment skill", RootPathString, inputs, outputs)); + + return new Skillset(SearchTestUtilities.GenerateName(), description: "Skillset for testing default configuration", skills: skills); + } + + private static Skillset CreateSkillsetWithSplitDefaultSettings() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mytext" + } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "textItems", + TargetName = "myTextItems" + } + }; + + skills.Add(new SplitSkill("Tested Split skill", RootPathString, inputs, outputs) + { + TextSplitMode = TextSplitMode.Pages + }); + + return new Skillset(SearchTestUtilities.GenerateName(), description: "Skillset for testing default configuration", skills: skills); + } + + private static Skillset CreateTestOcrSkillset(int repeat, TextExtractionAlgorithm algorithm, string name = null, bool shouldDetectOrientation = false) + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + for (int i = 0; i < repeat; i++) + { + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "text", TargetName = "mytext" + i } + }; + + skills.Add(new OcrSkill("Tested OCR skill", RootPathString, inputs, outputs) + { + TextExtractionAlgorithm = algorithm, + ShouldDetectOrientation = shouldDetectOrientation, + DefaultLanguageCode = "en" + }); + } + + return new Skillset(name: name ?? SearchTestUtilities.GenerateName(), description: "Skillset for testing OCR", skills: skills); + } + + private void CreateAndValidateSkillset(SearchServiceClient searchClient, Skillset expectedSkillset) + { + try + { + Skillset actualSkillset = searchClient.Skillsets.Create(expectedSkillset); + AssertSkillsetEqual(expectedSkillset, actualSkillset); + } + finally + { + searchClient.Skillsets.Delete(expectedSkillset.Name); + } + } + + private static void AssertSkillsetEqual(Skillset expected, Skillset actual) + { + Assert.Equal(expected, actual, new ModelComparer()); + } + + private static Skillset CreateTestSkillsetOcrKeyPhrase(OcrSkillLanguage ocrLanguageCode, KeyPhraseExtractionSkillLanguage keyPhraseLanguageCode) + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "text", TargetName = "mytext" } + }; + + skills.Add(new OcrSkill("Tested OCR skill", RootPathString, inputs, outputs) + { + TextExtractionAlgorithm = TextExtractionAlgorithm.Printed, + DefaultLanguageCode = ocrLanguageCode, + + }); + + List inputs1 = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mytext" + } + }; + + List outputs1 = new List() + { + new OutputFieldMappingEntry + { + Name = "keyPhrases", + TargetName = "myKeyPhrases" + } + }; + + skills.Add(new KeyPhraseExtractionSkill("Tested Key Phrase skill", RootPathString, inputs1, outputs1) + { + DefaultLanguageCode = keyPhraseLanguageCode, + + }); + + return new Skillset("testskillset", "Skillset for testing", skills); + } + + private static Skillset CreateTestSkillsetOcrSentiment(OcrSkillLanguage ocrLanguageCode, SentimentSkillLanguage sentimentLanguageCode) + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "text", TargetName = "mytext" } + }; + + skills.Add(new OcrSkill("Tested OCR skill", RootPathString, inputs, outputs) + { + TextExtractionAlgorithm = TextExtractionAlgorithm.Handwritten, + DefaultLanguageCode = ocrLanguageCode, + + }); + + List inputs1 = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mytext" + } + }; + + List outputs1 = new List() + { + new OutputFieldMappingEntry + { + Name = "score", + TargetName = "mySentiment" + } + }; + + skills.Add(new SentimentSkill("Tested Sentiment skill", RootPathString, inputs1, outputs1) + { + DefaultLanguageCode = sentimentLanguageCode, + + }); + + return new Skillset("testskillset1", "Skillset for testing", skills); + } + + private static Skillset CreateTestSkillsetImageAnalysisKeyPhrase() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "description", TargetName = "mydescription" } + }; + + skills.Add(new ImageAnalysisSkill("Tested image analysis skill", RootPathString, inputs, outputs) + { + VisualFeatures = new List + { + VisualFeature.Categories, + VisualFeature.Color, + VisualFeature.Description, + VisualFeature.Faces, + VisualFeature.ImageType, + VisualFeature.Tags + }, + Details = new List + { + ImageDetail.Celebrities, + ImageDetail.Landmarks + }, + DefaultLanguageCode = "en" + }); + + List inputs1 = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mydescription/*/Tags/*" + } + }; + + List outputs1 = new List() + { + new OutputFieldMappingEntry + { + Name = "keyPhrases", + TargetName = "myKeyPhrases" + } + }; + + skills.Add(new KeyPhraseExtractionSkill("Tested Key Phrase skill", RootPathString, inputs1, outputs1) + { + DefaultLanguageCode = "en" + }); + + return new Skillset("testskillset2", "Skillset for testing", skills); + } + + private static Skillset CreateTestSkillsetLanguageDetection() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/text" + } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "languageCode", + TargetName = "myLanguageCode" + } + }; + + skills.Add(new LanguageDetectionSkill("Tested Language Detection skill", RootPathString, inputs, outputs)); + + return new Skillset("testskillset3", "Skillset for testing", skills); + } + + private static Skillset CreateTestSkillsetMergeText() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/text" + }, + new InputFieldMappingEntry + { + Name = "itemsToInsert", + Source = "/document/textitems" + }, + new InputFieldMappingEntry + { + Name = "offsets", + Source = "/document/offsets" + } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry + { + Name = "mergedText", + TargetName = "myMergedText" + } + }; + + skills.Add(new MergeSkill("Tested Merged Text skill", RootPathString, inputs, outputs) + { + InsertPreTag = "__", + InsertPostTag = "__e" + }); + + return new Skillset("testskillset4", "Skillset for testing", skills); + } + + private static Skillset CreateTestSkillsetOcrShaper() + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "text", TargetName = "mytext" } + }; + + skills.Add(new OcrSkill("Tested OCR skill", RootPathString, inputs, outputs) + { + TextExtractionAlgorithm = TextExtractionAlgorithm.Printed, + DefaultLanguageCode = "en" + }); + + List inputs1 = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mytext" + } + }; + + List outputs1 = new List() + { + new OutputFieldMappingEntry + { + Name = "output", + TargetName = "myOutput" + } + }; + + skills.Add(new ShaperSkill("Tested Shaper skill", RootPathString, inputs1, outputs1)); + + return new Skillset("testskillset", "Skillset for testing", skills); + } + + private static Skillset CreateTestSkillsetOcrSplitText(OcrSkillLanguage ocrLanguageCode, SplitSkillLanguage splitLanguageCode, TextSplitMode textSplitMode) + { + List skills = new List(); + + List inputs = new List() + { + new InputFieldMappingEntry { Name = "url", Source = "/document/url" }, + new InputFieldMappingEntry { Name = "queryString", Source = "/document/queryString" } + }; + + List outputs = new List() + { + new OutputFieldMappingEntry { Name = "text", TargetName = "mytext" } + }; + + skills.Add(new OcrSkill("Tested OCR skill", RootPathString, inputs, outputs) + { + TextExtractionAlgorithm = TextExtractionAlgorithm.Printed, + DefaultLanguageCode = ocrLanguageCode + }); + + List inputs1 = new List() + { + new InputFieldMappingEntry + { + Name = "text", + Source = "/document/mytext" + } + }; + + List outputs1 = new List() + { + new OutputFieldMappingEntry + { + Name = "textItems", + TargetName = "myTextItems" + } + }; + + skills.Add(new SplitSkill("Tested Split skill", RootPathString, inputs1, outputs1) + { + TextSplitMode = textSplitMode, + DefaultLanguageCode = splitLanguageCode + }); + + return new Skillset("testskillset", "Skillset for testing", skills); + } + } +} \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/Utilities/IndexerFixture.cs b/src/SDKs/Search/DataPlane/Search.Tests/Utilities/IndexerFixture.cs index 7e3f46c20360..ff827cce25ca 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/Utilities/IndexerFixture.cs +++ b/src/SDKs/Search/DataPlane/Search.Tests/Utilities/IndexerFixture.cs @@ -5,6 +5,7 @@ namespace Microsoft.Azure.Search.Tests.Utilities { using System; + using System.Collections.Generic; using Microsoft.Azure.Search.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; @@ -45,7 +46,9 @@ public override void Initialize(MockContext context) new Field("county_name", DataType.String) { IsFilterable = true, IsSearchable = true }, new Field("elevation", DataType.Int32) { IsFilterable = true }, new Field("map_name", DataType.String) { IsFilterable = true, IsSearchable = true }, - new Field("history", DataType.Collection(DataType.String)) { IsSearchable = true } + new Field("history", DataType.Collection(DataType.String)) { IsSearchable = true }, + new Field("myEntities", DataType.Collection(DataType.String)) { IsSearchable = true }, + new Field("myText", DataType.String) { IsSearchable = true } }); searchClient.Indexes.Create(index); @@ -77,6 +80,17 @@ public Indexer CreateTestIndexer() => } }; + public Indexer CreateTestIndexerWithSkillset(string skillsetName, IList outputFieldMapping) + { + return new Indexer(name: SearchTestUtilities.GenerateName(), dataSourceName: DataSourceName, targetIndexName: TargetIndexName, skillsetName: skillsetName) + { + // We can't test startTime because it's an absolute time that must be within 24 hours of the current + // time. That doesn't play well with recorded mock payloads. + Schedule = new IndexingSchedule(interval: TimeSpan.FromDays(1)), + OutputFieldMappings = outputFieldMapping + }; + } + public Indexer MutateIndexer(Indexer indexer) { indexer.Description = "Mutated Indexer"; diff --git a/src/SDKs/_metadata/search_data-plane_Microsoft.Azure.Search.Service.txt b/src/SDKs/_metadata/search_data-plane_Microsoft.Azure.Search.Service.txt index 89d5c43c6cf1..9f3193499e15 100644 --- a/src/SDKs/_metadata/search_data-plane_Microsoft.Azure.Search.Service.txt +++ b/src/SDKs/_metadata/search_data-plane_Microsoft.Azure.Search.Service.txt @@ -1,17 +1,20 @@ -Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\github\azure-sdk-for-net\tools\..\src\SDKs\ -2018-05-11 00:13:07 UTC +Installing AutoRest version: latest +AutoRest installed successfully. +Commencing code generation +Generating CSharp code +Executing AutoRest command +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=F:\sdkfornet2\src\SDKs +2018-07-23 18:04:01 UTC 1) azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 2b5b85aea1b1f4790c7a0632d79c64c81198bed1 +Commit: 93a0d9e4fcd6dbef94bbeacc307954654e5794f1 2) AutoRest information Requested version: latest -Bootstrapper version: C:\Users\brjohnst\AppData\Roaming\npm `-- autorest@2.0.4262 +Bootstrapper version: autorest@2.0.4282 Latest installed version: -.\tools\generate.ps1 was invoked by generate.ps1