Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/azure-cli/azure/cli/command_modules/search/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def create_search_service(cmd, resource_group_name, search_service_name, sku, lo
allowed values are "enabled" or "disabled".
:param ip_rules: Public IP(v4) addresses or CIDR ranges to the search service, seperated by comma or semicolon;
These IP rules are applicable only when public_network_access is "enabled".
:param identity_type: The identity type. Possible values include: "None", "SystemAssigned".
:param identity_type: The identity type; possible values include: "None", "SystemAssigned".
"""
from azure.mgmt.search.models import SearchService, Sku, NetworkRuleSet, IpRule, Identity
from azure.cli.command_modules.search._client_factory import cf_search_services
Expand Down Expand Up @@ -79,7 +79,7 @@ def update_search_service(instance, partition_count=0, replica_count=0, public_n
semicolon(';'); If spaces (ex - ' '), ',' or ';' is provided, any existing IP rule will be
nullified and no public IP rule is applied. These IP rules are applicable only when
public_network_access is "enabled".
:param identity_type: The identity type. Possible values include: "None", "SystemAssigned".
:param identity_type: The identity type; possible values include: "None", "SystemAssigned".
"""
from azure.mgmt.search.models import NetworkRuleSet, IpRule, Identity
import re
Expand Down