1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
# coding: utf-8
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
"""
FILE: sample_index_alias_crud_operations.py
DESCRIPTION:
This sample demonstrates how to get, create, update, or delete an alias with an existing index.
USAGE:
python sample_index_alias_crud_operations.py
Set the environment variables with your own values before running the sample:
1) AZURE_SEARCH_SERVICE_ENDPOINT - the endpoint of your Azure Cognitive Search service
2) AZURE_SEARCH_API_KEY - your search API key
3) AZURE_SEARCH_INDEX_NAME - the name of your search index (e.g. "hotels-sample-index")
"""
import os
service_endpoint = os.environ["AZURE_SEARCH_SERVICE_ENDPOINT"]
index_name = os.environ["AZURE_SEARCH_INDEX_NAME"]
key = os.environ["AZURE_SEARCH_API_KEY"]
alias_name = "motels"
from azure.core.credentials import AzureKeyCredential
from azure.search.documents.indexes import SearchIndexClient
from azure.search.documents.indexes.models import (
ComplexField,
CorsOptions,
ScoringProfile,
SearchAlias,
SearchIndex,
SimpleField,
SearchableField,
SearchFieldDataType,
)
client = SearchIndexClient(service_endpoint, AzureKeyCredential(key))
def create_alias():
# [START create_alias]
alias = SearchAlias(name=alias_name, indexes=[index_name])
result = client.create_alias(alias)
# [END create_alias]
def get_alias():
# [START get_alias]
result = client.get_alias(alias_name)
# [END get_alias]
def update_alias():
# [START update_alias]
new_index_name = "hotels"
fields = [
SimpleField(name="hotelId", type=SearchFieldDataType.String, key=True),
SimpleField(name="baseRate", type=SearchFieldDataType.Double),
SearchableField(name="description", type=SearchFieldDataType.String, collection=True),
SearchableField(name="hotelName", type=SearchFieldDataType.String),
ComplexField(
name="address",
fields=[
SimpleField(name="streetAddress", type=SearchFieldDataType.String),
SimpleField(name="city", type=SearchFieldDataType.String),
SimpleField(name="state", type=SearchFieldDataType.String),
],
collection=True,
),
]
cors_options = CorsOptions(allowed_origins=["*"], max_age_in_seconds=60)
scoring_profile = ScoringProfile(name="MyProfile")
scoring_profiles = []
scoring_profiles.append(scoring_profile)
index = SearchIndex(
name=new_index_name, fields=fields, scoring_profiles=scoring_profiles, cors_options=cors_options
)
result_index = client.create_or_update_index(index=index)
alias = SearchAlias(name=alias_name, indexes=[new_index_name])
result = client.create_or_update_alias(alias)
# [END update_alias]
def delete_alias():
# [START delete_alias]
client.delete_alias(alias_name)
# [END delete_alias]
if __name__ == "__main__":
create_alias()
get_alias()
update_alias()
delete_alias()
|