Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix query #716

Merged
merged 4 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions src/markdown-pages/docs/ecosystem/ecosystem-manage-cps.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,21 @@ To retrieve a specific property from the `framework` namespace, specify the prop

### Retrieve a subset of properties in a namespace

To filter the properties that are returned, without specifying the property name, use the `–prefix`, `–suffix`, and ``--infix`` flags. You can specify more than one `--infix` value by using a comma separated list. For example, to return properties in the `docker` namespace that start with `docker`, end with `hostname`, and contain `engine` use the following command:
To filter the properties that are returned, without specifying the property name, use the `–prefix`, `–suffix`, and ``--infix`` flags. You can specify more than one `--infix` value by using a comma separated list. For example, to return properties in the `docker` namespace that start with `docker.engine`, end with `hostname`, and contain `LOCAL` or `REMOTE` use the following command:


On Mac and Unix:

```
galasactl properties get \
--namespace framework --prefix test --suffix stream --infix batch,production
--namespace framework --prefix docker.engine --suffix hostname --infix LOCAL,REMOTE
```

On Windows (Powershell):

```
galasactl properties get `
--namespace framework --prefix docker --suffix hostname --infix engine
--namespace framework --prefix docker.engine --suffix hostname --infix LOCAL,REMOTE
```


Expand Down Expand Up @@ -164,7 +164,7 @@ Tests for the `EXAMPLE` test stream are deployed to the Maven repository that is

You can delete a property and its associated value in a namespace by using the `galasactl properties delete` command. You must provide the namespace and the name of the property that you want to delete. For example:

```galasactl properties set --namespace framework --name propertyName```
```galasactl properties delete --namespace framework --name propertyName```

A success message is displayed when the property is deleted.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: "z/OS Managers"

Name | Description |
| :-------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **[RSE API Manager](/docs/managers/rse-api-manager)**<br> ![alpha](../../../images/alpha.svg) | Provides tests and Managers with access to RSE API functions. |
| **[RSE API Manager](/docs/managers/rse-api-manager)**<br> ![alpha](../../../images/alpha.svg) | Provides tests and Galasa Managers with access to RSE API functions. |
| **[z/OS 3270 Manager](/docs/managers/zos3270terminal-manager)**<br> ![beta](../../../images/beta.svg) | Provides tests and Managers with a 3270 client. |
| **[z/OS Batch z/OS MF Manager](/docs/managers/z-os-batch-z-os-mf-manager)**<br> ![beta](../../../images/beta.svg) | Provides the default implementation of the z/OS Batch Manager using z/OS MF. Can only be used via the z/OS Batch Manager interface. |
| **[z/OS Batch RSE API Manager](/docs/managers/z-os-batch-rse-api-manager)**<br> ![alpha](../../../images/alpha.svg) | Provides an implementation of the z/OS Batch Manager using the RSE API. Can only be used via the z/OS Batch Manager interface. |
Expand Down
Loading