svmxa360-sf v0.1.0-beta.1
svmxa360-sf
Using the template
This repository provides a template for creating a plugin for the Salesforce CLI. To convert this template to a working plugin:
- Please get in touch with the Platform CLI team. We want to help you develop your plugin.
Generate your plugin:
sf plugins install dev sf dev generate plugin git init -b main git add . && git commit -m "chore: initial commit"
Create your plugin's repo in the salesforcecli github org
- When you're ready, replace the contents of this README with the information you want.
Learn about sf
plugins
Salesforce CLI plugins are based on the oclif plugin framework. Read the plugin developer guide to learn about Salesforce CLI plugin development.
This repository contains a lot of additional scripts and tools to help with general Salesforce node development and enforce coding standards. You should familiarize yourself with some of the node developer packages used by Salesforce.
Additionally, there are some additional tests that the Salesforce CLI will enforce if this plugin is ever bundled with the CLI. These test are included by default under the posttest
script and it is required to keep these tests active in your plugin if you plan to have it bundled.
Tooling
- @salesforce/core
- @salesforce/kit
- @salesforce/sf-plugins-core
- @salesforce/ts-types
- @salesforce/ts-sinon
- @salesforce/dev-config
- @salesforce/dev-scripts
Hooks
For cross clouds commands, e.g. sf env list
, we utilize oclif hooks to get the relevant information from installed plugins.
This plugin includes sample hooks in the src/hooks directory. You'll just need to add the appropriate logic. You can also delete any of the hooks if they aren't required for your plugin.
Everything past here is only a suggestion as to what should be in your specific plugin's description
This plugin is bundled with the Salesforce CLI. For more information on the CLI, read the getting started guide.
We always recommend using the latest version of these commands bundled with the CLI, however, you can install a specific version or tag if needed.
Install
sf plugins install svmxa360-sf@x.y.z
Issues
Please report any issues at https://github.com/forcedotcom/cli/issues
Contributing
- Please read our Code of Conduct
- Create a new issue before starting your project so that we can keep track of what you are trying to add/fix. That way, we can also offer suggestions or let you know if there is already an effort in progress.
- Fork this repository.
- Build the plugin locally
- Create a topic branch in your fork. Note, this step is recommended but technically not required if contributing using a fork.
- Edit the code in your fork.
- Write appropriate tests for your changes. Try to achieve at least 95% code coverage on any new code. No pull request will be accepted without unit tests.
- Sign CLA (see CLA below).
- Send us a pull request when you are done. We'll review your code, suggest any needed changes, and merge it in.
CLA
External contributors will be required to sign a Contributor's License Agreement. You can do so by going to https://cla.salesforce.com/sign-cla.
Build
To build the plugin locally, make sure to have yarn installed and run the following commands:
# Clone the repository
git clone git@github.com:salesforcecli/svmxa360-sf
# Install the dependencies and compile
yarn && yarn build
To use your plugin, run using the local ./bin/dev
or ./bin/dev.cmd
file.
# Run using local run file.
./bin/dev hello world
There should be no differences when running via the Salesforce CLI or using the local run file. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.
# Link your plugin to the sf cli
sf plugins link .
# To verify
sf plugins
Commands
sf svmx deploy
sf svmx deploy assethierarchy
sf svmx deploy assettimeline
sf svmx deploy entitlementrule
sf svmx deploy esarule
sf svmx deploy expression
sf svmx deploy mapping
sf svmx deploy mpln
sf svmx deploy parule
sf svmx deploy psc
sf svmx deploy screen
sf svmx deploy techattr
sf svmx deploy transaction
sf svmx deploy translation
sf svmx deploy wizard
sf svmx retrieve
sf svmx retrieve assethierarchy
sf svmx retrieve assettimeline
sf svmx retrieve entitlementrule
sf svmx retrieve esarule
sf svmx retrieve expression
sf svmx retrieve mapping
sf svmx retrieve mpln
sf svmx retrieve parule
sf svmx retrieve psc
sf svmx retrieve screen
sf svmx retrieve techattr
sf svmx retrieve transaction
sf svmx retrieve translation
sf svmx retrieve wizard
sf svmx validate
sf svmx validate assethierarchy
sf svmx validate assettimeline
sf svmx validate entitlementrule
sf svmx validate esarule
sf svmx validate expression
sf svmx validate mapping
sf svmx validate mpln
sf svmx validate parule
sf svmx validate psc
sf svmx validate screen
sf svmx validate techattr
sf svmx validate transaction
sf svmx validate wizard
sf svmx deploy
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy -o <value> [--json] [-n <value>] [-p <value>] [-t <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
-t, --type=<value> The type of Asset 360 configurations to be retrieved from the Source Salesforce Org.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy
Retrieve specific Asset 360 expressions:
$ sf svmx deploy --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
-t, --type=<value> The type of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The type of Asset 360 configurations specified in the comma seperated string will be retrieved from the Salesforce
Org. If not specified, all Asset 360 configuration types will be retrieved.
sf svmx deploy assethierarchy
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy assethierarchy -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy assethierarchy
Retrieve specific Asset 360 expressions:
$ sf svmx deploy assethierarchy --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy assettimeline
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy assettimeline -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy assettimeline
Retrieve specific Asset 360 expressions:
$ sf svmx deploy assettimeline --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy entitlementrule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy entitlementrule -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy entitlementrule
Retrieve specific Asset 360 expressions:
$ sf svmx deploy entitlementrule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy esarule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy esarule -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy esarule
Retrieve specific Asset 360 expressions:
$ sf svmx deploy esarule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy expression
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy expression -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy expression
Retrieve specific Asset 360 expressions:
$ sf svmx deploy expression --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy mapping
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy mapping -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy mapping
Retrieve specific Asset 360 expressions:
$ sf svmx deploy mapping --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy mpln
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy mpln -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy mpln
Retrieve specific Asset 360 expressions:
$ sf svmx deploy mpln --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy parule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy parule -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy parule
Retrieve specific Asset 360 expressions:
$ sf svmx deploy parule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy psc
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy psc -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy psc
Retrieve specific Asset 360 expressions:
$ sf svmx deploy psc --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy screen
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy screen -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy screen
Retrieve specific Asset 360 expressions:
$ sf svmx deploy screen --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy techattr
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy techattr -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy techattr
Retrieve specific Asset 360 expressions:
$ sf svmx deploy techattr --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy transaction
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy transaction -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy transaction
Retrieve specific Asset 360 expressions:
$ sf svmx deploy transaction --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy translation
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy translation -o <value> [--json] [-n <value>] [-l <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-l, --languahe=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy translation
Retrieve specific Asset 360 expressions:
$ sf svmx deploy translation --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-l, --languahe=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx deploy wizard
Retrieve Asset 360 Configurations
USAGE
$ sf svmx deploy wizard -o <value> [--json] [-n <value>] [-p <value>] [-f] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-f, --force Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx deploy wizard
Retrieve specific Asset 360 expressions:
$ sf svmx deploy wizard --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-f, --force Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve -o <value> [--json] [-n <value>] [-t <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
-t, --type=<value> The type of Asset 360 configurations to be retrieved from the Source Salesforce Org.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
-t, --type=<value> The type of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The type of Asset 360 configurations specified in the comma seperated string will be retrieved from the Salesforce
Org. If not specified, all Asset 360 configuration types will be retrieved.
sf svmx retrieve assethierarchy
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve assethierarchy -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve assethierarchy
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve assethierarchy --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve assettimeline
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve assettimeline -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve assettimeline
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve assettimeline --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve entitlementrule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve entitlementrule -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve entitlementrule
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve entitlementrule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve esarule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve esarule -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve esarule
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve esarule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve expression
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve expression -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve expression
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve expression --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve mapping
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve mapping -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve mapping
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve mapping --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve mpln
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve mpln -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve mpln
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve mpln --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve parule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve parule -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve parule
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve parule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve psc
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve psc -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve psc
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve psc --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve screen
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve screen -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve screen
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve screen --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve techattr
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve techattr -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve techattr
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve techattr --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve transaction
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve transaction -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve transaction
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve transaction --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve translation
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve translation -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve translation
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve translation --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx retrieve wizard
Retrieve Asset 360 Configurations
USAGE
$ sf svmx retrieve wizard -o <value> [--json] [-n <value>] [-p <value>] [-d] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-d, --includedependency Include dependent Asset 360 configurations.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx retrieve wizard
Retrieve specific Asset 360 expressions:
$ sf svmx retrieve wizard --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-d, --includedependency Include dependent Asset 360 configurations.
All the dependent Asset 360 configurations will be retrieved as part of the retrieved Asset360 configuration.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path to which the configurations to be retrieved and saved.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate -o <value> [--json] [-n <value>] [-t <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
-t, --type=<value> The type of Asset 360 configurations to be retrieved from the Source Salesforce Org.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate
Retrieve specific Asset 360 expressions:
$ sf svmx validate --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
-t, --type=<value> The type of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The type of Asset 360 configurations specified in the comma seperated string will be retrieved from the Salesforce
Org. If not specified, all Asset 360 configuration types will be retrieved.
sf svmx validate assethierarchy
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate assethierarchy -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate assethierarchy
Retrieve specific Asset 360 expressions:
$ sf svmx validate assethierarchy --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate assettimeline
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate assettimeline -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate assettimeline
Retrieve specific Asset 360 expressions:
$ sf svmx validate assettimeline --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate entitlementrule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate entitlementrule -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate entitlementrule
Retrieve specific Asset 360 expressions:
$ sf svmx validate entitlementrule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate esarule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate esarule -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate esarule
Retrieve specific Asset 360 expressions:
$ sf svmx validate esarule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate expression
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate expression -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate expression
Retrieve specific Asset 360 expressions:
$ sf svmx validate expression --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate mapping
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate mapping -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate mapping
Retrieve specific Asset 360 expressions:
$ sf svmx validate mapping --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate mpln
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate mpln -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate mpln
Retrieve specific Asset 360 expressions:
$ sf svmx validate mpln --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate parule
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate parule -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate parule
Retrieve specific Asset 360 expressions:
$ sf svmx validate parule --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate psc
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate psc -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate psc
Retrieve specific Asset 360 expressions:
$ sf svmx validate psc --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate screen
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate screen -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate screen
Retrieve specific Asset 360 expressions:
$ sf svmx validate screen --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate techattr
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate techattr -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate techattr
Retrieve specific Asset 360 expressions:
$ sf svmx validate techattr --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate transaction
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate transaction -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate transaction
Retrieve specific Asset 360 expressions:
$ sf svmx validate transaction --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
sf svmx validate wizard
Retrieve Asset 360 Configurations
USAGE
$ sf svmx validate wizard -o <value> [--json] [-n <value>] [-p <value>] [-c <value>] [-a <value>]
FLAGS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
-c, --configfile=<value> The configuration file to be used.
-n, --developername=<value> The developer names of Asset 360 configurations to be retrieved from the Source
Salesforce Org.
-o, --target-org=<value> (required) The source Salesforce Org from which configurations to be retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Retrieve Asset 360 Configurations
Retrieve Asset 360 configurations from the Salesforce Org and save the configurations in the json format.
EXAMPLES
Retrieve Asset 360 expressions:
$ sf svmx validate wizard
Retrieve specific Asset 360 expressions:
$ sf svmx validate wizard --n AST_Installed_Expression,AST_Not_Installed_Expression
FLAG DESCRIPTIONS
-a, --api-version=<value> The Source Salesforce Org API version for the retrieve.
Use this flag to override the default API version with the API version of your package.xml file. The default API
version is the latest version supported by the CLI.
-c, --configfile=<value> The configuration file to be used.
File with list of configurations to be retrieved.
-n, --developername=<value>
The developer names of Asset 360 configurations to be retrieved from the Source Salesforce Org.
The developer names of Asset 360 configurations specified in the comma seperated string will be retrieved from the
Salesforce Org. If not specified, all Asset 360 configurations will be retrieved.
-o, --target-org=<value> The source Salesforce Org from which configurations to be retrieved.
The Salesforce Org username with access to all the Asset 360 configuration objects and REST APIs to be specified
from which configurations are retrieved.
-p, --path=<value> The path from which the configurations to be retrieved and deploy.
The path flag overrides the default path of force-app/main/default/ to specified path.
2 years ago
2 years ago