Skip to content

Commit 14888a6

Browse files
chore: required parameter and remove .venv in .gitignore
1 parent 3c84c6e commit 14888a6

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ __pycache__/
66
env/
77
env27/
88
venv/
9-
.venv/
109
.python-version
1110

1211
# PTVS analysis

src/azure-cli/azure/cli/command_modules/apim/_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def load_arguments(self, _):
520520
c.argument('service_name', options_list=['--service-name', '-n'],
521521
help='The name of the API Management service instance.')
522522
c.argument('backend_id', arg_type=backend_id, help='Identifier of the Backend.')
523-
c.argument('url', help='Required. Backend service URL.')
523+
c.argument('url', required=True, help='Backend service URL.')
524524
c.argument('protocol', arg_type=get_enum_type(BACKEND_PROTOCOLS),
525525
help='Protocol used to communicate with the backend service. Possible values include: `http`, `soap`.')
526526
c.argument('description', help='Description of the Backend. May include HTML formatting tags.')

0 commit comments

Comments
 (0)