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

Add commands for named connections #51

Merged
merged 8 commits into from
Apr 16, 2024
7 changes: 7 additions & 0 deletions docs/fmeflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ A command line interface for interacting with FME Server.

A command line interface for interacting with FME Server. See available commands below. Get started with the login command.

### Examples

```
# Get started with the login command
fmeserver login https://my-fmeserver.internal
garnold54 marked this conversation as resolved.
Show resolved Hide resolved
```

### Options

```
Expand Down
10 changes: 7 additions & 3 deletions docs/fmeflow_deploymentparameters_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ fmeflow deploymentparameters create [flags]
### Options

```
-h, --help help for create
--name string Name of the deployment parameter to create.
--value string The value to set the deployment parameter to.
--database-type string The type of the database to use for the database deployment parameter. (Optional)
--excluded-service stringArray Service to exclude in the deployment parameter. Can be passed in multiple times if there are multiple Web services to exclude.
-h, --help help for create
--included-service stringArray Service to include in the deployment parameter. Can be passed in multiple times if there are multiple Web services to include.
--name string Name of the deployment parameter to create.
--type string Type of parameter to create. Must be one of text, database, or web. Default is text.
--value string The value to set the deployment parameter to. (Optional)
```

### Options inherited from parent commands
Expand Down
10 changes: 7 additions & 3 deletions docs/fmeflow_deploymentparameters_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ fmeflow deploymentparameters update [flags]
### Options

```
-h, --help help for update
--name string Name of the deployment parameter to update.
--value string The value to set the deployment parameter to.
--database-type string The type of the database to use for the database deployment parameter. (Optional)
--excluded-service stringArray Service to exclude in the deployment parameter. Can be passed in multiple times if there are multiple Web services to exclude.
-h, --help help for update
--included-service stringArray Service to include in the deployment parameter. Can be passed in multiple times if there are multiple Web services to include.
--name string Name of the deployment parameter to update.
--type string Update the type of the parameter. Must be one of text, database, or web. Default is text.
--value string The value to set the deployment parameter to.
```

### Options inherited from parent commands
Expand Down
1 change: 1 addition & 0 deletions docs/fmeflow_projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@ fmeflow projects [flags]
* [fmeflow](fmeflow.md) - A command line interface for interacting with FME Server.
* [fmeflow projects delete](fmeflow_projects_delete.md) - Deletes an FME Flow Project
* [fmeflow projects download](fmeflow_projects_download.md) - Downloads an FME Server Project
* [fmeflow projects items](fmeflow_projects_items.md) - Lists the items for the specified project
* [fmeflow projects upload](fmeflow_projects_upload.md) - Imports FME Flow Projects from a downloaded package.

12 changes: 6 additions & 6 deletions docs/fmeflow_projects_download.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ fmeflow projects download [flags]
### Options

```
--exclude-selectable-items Excludes all selectable item in this package. Default is false.
--exclude-sensitive-info Whether to exclude sensitive information from the exported package. Sensitive information will be excluded from connections, subscriptions, publications, schedule tasks, S3 resources, and user accounts. Other items in the project may still contain sensitive data, especially workspaces. Please be careful before sharing the project export pacakge with others.
-f, --file string Path to file to download the backup to. (default "ProjectPackage.fsproject")
-h, --help help for download
--id string ID of the project to download.
--name string Name of the project to download.
--exclude-all-selectable-items Excludes all selectable item in this package. Default is false.
--exclude-sensitive-info Whether to exclude sensitive information from the exported package. Sensitive information will be excluded from connections, subscriptions, publications, schedule tasks, S3 resources, and user accounts. Other items in the project may still contain sensitive data, especially workspaces. Please be careful before sharing the project export pacakge with others.
-f, --file string Path to file to download the backup to. (default "ProjectPackage.fsproject")
-h, --help help for download
--id string ID of the project to download.
--name string Name of the project to download.
```

### Options inherited from parent commands
Expand Down
Loading