File tree 1 file changed +56
-0
lines changed
content/en/docs/score implementation/score-compose
1 file changed +56
-0
lines changed Original file line number Diff line number Diff line change @@ -230,6 +230,62 @@ Displays help output for the `run` command.
230
230
score-compose run -h
231
231
```
232
232
233
+ ## ` resources `
234
+
235
+ The ` resources ` command provides subcommands related to provisioned resources in ` score-compose ` .
236
+
237
+ ``` bash
238
+ score-compose resources [command]
239
+ ```
240
+
241
+ ### Subcommands
242
+
243
+ #### ` get-outputs `
244
+
245
+ Returns the outputs of provisioned resources. This command retrieves values that can be used by workloads or other processes.
246
+
247
+ ``` bash
248
+ score-compose resources get-outputs
249
+ ```
250
+
251
+ #### ` list `
252
+
253
+ Lists the unique identifiers (UIDs) of all provisioned resources.
254
+
255
+ ``` bash
256
+ score-compose resources list
257
+ ```
258
+
259
+ ### Flags
260
+
261
+ #### ` --help ` | ` -h `
262
+
263
+ Displays help information for the ` resources ` command, including its available subcommands.
264
+
265
+ ``` bash
266
+ score-compose resources --help
267
+ ```
268
+
269
+ ### Global Flags
270
+
271
+ These flags apply to all ` score-compose resources ` commands:
272
+
273
+ #### ` --quiet `
274
+
275
+ Mutes any logging output.
276
+
277
+ ``` bash
278
+ score-compose resources --quiet
279
+ ```
280
+
281
+ #### ` --verbose count ` | ` -v `
282
+
283
+ Increases log verbosity and detail by specifying this flag one or more times.
284
+
285
+ ``` bash
286
+ score-compose resources --verbose
287
+ ```
288
+
233
289
## ` help `
234
290
235
291
The help command provides information on all commands.
You can’t perform that action at this time.
0 commit comments