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/blueprint/azext_blueprint/_params.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ def load_arguments(self, _):
113
113
c.argument('artifact_name', help='A unique name of this resource group artifact.')
114
114
c.argument('display_name', help='Display name of this resource group artifact.')
115
115
c.argument('description', help='Description of the blueprint artifact.')
116
-
c.argument('depends_on', nargs='+', help='Artifacts which need to be deployed before the specified artifact.')
116
+
c.argument('depends_on', nargs='*', help="Artifacts which need to be deployed before the specified artifact. Use '--depends-on' with no values to remove dependencies.")
117
117
c.argument('tags', tags_type, arg_group='Resource Group', help='Tags to be assigned to this resource group.')
c.argument('artifact_name', help='Name of the blueprint artifact.')
143
143
c.argument('display_name', help='DisplayName of this artifact.')
144
144
c.argument('description', help='Description of the blueprint artifact.')
145
-
c.argument('depends_on', nargs='+', help='Artifacts which need to be deployed before the specified artifact.')
145
+
c.argument('depends_on', nargs='*', help="Artifacts which need to be deployed before the specified artifact. Use '--depends-on' with no values to remove dependencies.")
146
146
c.argument('resource_group_art', help='Name of the resource group artifact to which the policy will be assigned.')
147
147
c.argument('parameters', arg_type=parameter_type, help='Parameters for policy assignment artifact. It can be a JSON string or JSON file path.')
148
148
@@ -161,7 +161,7 @@ def load_arguments(self, _):
161
161
c.argument('artifact_name', help='Name of the blueprint artifact.')
162
162
c.argument('display_name', help='DisplayName of this artifact.')
163
163
c.argument('description', help='Description of the blueprint artifact.')
164
-
c.argument('depends_on', nargs='+', help='Artifacts which need to be deployed before the specified artifact.')
164
+
c.argument('depends_on', nargs='*', help="Artifacts which need to be deployed before the specified artifact. Use '--depends-on' with no values to remove dependencies.")
165
165
c.argument('resource_group_art', help='Name of the resource group artifact to which the policy will be assigned.')
c.argument('artifact_name', help='Name of the blueprint artifact.')
180
180
c.argument('display_name', help='DisplayName of this artifact.')
181
181
c.argument('description', help='Description of the blueprint artifact.')
182
-
c.argument('depends_on', nargs='+', help='Artifacts which need to be deployed before the specified artifact.')
182
+
c.argument('depends_on', nargs='*', help="Artifacts which need to be deployed before the specified artifact. Use '--depends-on' with no values to remove dependencies.")
183
183
c.argument('resource_group_art', help='Name of the resource group artifact to which the policy will be assigned.')
184
184
c.argument('parameters', arg_type=parameter_type, help='Parameters for ARM template artifact. It can be a JSON string or JSON file path.')
0 commit comments