You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/azure-cli/azure/cli/command_modules/apim/_help.py
+71Lines changed: 71 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,11 @@
88
88
short-summary: Manage soft-deleted Azure API Management services.
89
89
"""
90
90
91
+
helps['apim backend'] ="""
92
+
type: group
93
+
short-summary: Manage Azure API Management Backends.
94
+
"""
95
+
91
96
helps['apim backup'] ="""
92
97
type: command
93
98
short-summary: Creates a backup of the API Management service to the given Azure Storage Account. This is long running operation and could take several minutes to complete.
@@ -749,3 +754,69 @@
749
754
text: |
750
755
az apim graphql resolver policy list --service-name MyApim -g MyResourceGroup --api-id MyApi --resolver-id MyResolverId
751
756
"""
757
+
758
+
helps['apim backend list'] ="""
759
+
type: command
760
+
short-summary: List API Management Backends.
761
+
examples:
762
+
- name: List all Backends in an APIM instance.
763
+
text: |-
764
+
az apim backend list --resource-group MyResourceGroup --service-name MyServiceName
765
+
"""
766
+
767
+
helps['apim backend show'] ="""
768
+
type: command
769
+
short-summary: Show details of an API Management Backend.
770
+
examples:
771
+
- name: Show details of a Backend in an APIM instance.
772
+
text: |-
773
+
az apim backend show --resource-group MyResourceGroup --service-name MyServiceName --backend-id MyBackendId
774
+
"""
775
+
776
+
helps['apim backend delete'] ="""
777
+
type: command
778
+
short-summary: Delete an API Management Backend.
779
+
examples:
780
+
- name: Delete a Backend in an APIM instance.
781
+
text: |-
782
+
az apim backend delete --resource-group MyResourceGroup --service-name MyServiceName --backend-id MyBackendId
783
+
"""
784
+
785
+
helps['apim backend create'] ="""
786
+
type: command
787
+
short-summary: Create or Update an API Management Backend.
788
+
parameters:
789
+
- name: --backend-id
790
+
type: string
791
+
short-summary: unique name for the Backend to be created or updated
792
+
long-summary: |
793
+
Must be unique in the current API Management service instance.
794
+
- name: --url
795
+
type: string
796
+
short-summary: The URL of the backend service.
797
+
- name: --protocol
798
+
type: string
799
+
short-summary: The protocol used to communicate with the backend service.
short-summary: unique name of the Backend to be updated
813
+
long-summary: |
814
+
Must be unique in the current API Management service instance.
815
+
- name: --if-match
816
+
type: string
817
+
short-summary: ETag of the Backend entity. ETag should match the current entity state from the service to perform an update. Use "*" for unconditional update.
help='API identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.')
52
52
schema_id=CLIArgumentType(arg_group='Schema',
53
53
help='Schema identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.')
54
+
backend_id=CLIArgumentType(arg_group='Backend',
55
+
help='Backend identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.')
0 commit comments