Product Documentation
- Section I. Overview and planning
- Introduction to Resiliency Platform
- About Resiliency Platform features and components
- Replication in a Resiliency Platform deployment
- About Veritas Resiliency Platform Data Mover
- Recovery options using Resiliency Platform
- Deployment checklist
- System requirements
- Manage licenses
- Using the Web Console
- Introduction to Resiliency Platform
- Section II. Deploying and configuring the virtual appliances
- Deploy and configure
- Deploying the virtual appliances in AWS through AWS Marketplace
- Deploying the virtual appliances in AWS using OVA files
- Deploying the Data Gateway in AWS
- Deploying the virtual appliances in Azure using PowerShell script
- Deploying the virtual appliances in Azure through Azure Marketplace
- Deploying the virtual appliances in vCloud
- Deploying the virtual appliances in HUAWEI CLOUD
- Deploying the virtual appliances in Orange Recovery Engine
- About configuring the Resiliency Platform components
- Virtual appliance security features
- About hotfixes
- Apply Updates
- About applying updates to Resiliency Platform
- Setting up the YUM server
- Deploy and configure
- Section III. Setting up and managing the resiliency domain
- Managing the resiliency domain
- Getting started with a new Resiliency Platform configuration
- Managing Resiliency Managers
- Managing Infrastructure Management Servers
- Managing on-premises data centers
- Managing cloud configurations
- Managing private cloud configurations
- Integrating with NetBackup
- Integrating with InfoScale Operations Manager
- Managing the resiliency domain
- Section IV. Adding the asset infrastructure
- Manage Resiliency Platform host assets
- Prerequisites for adding hosts
- Removing hosts
- Preparing host for replication
- Manage VMware assets
- Managing VMware virtualization servers
- Prerequisites for adding VMware virtualization servers
- Prerequisites for adding VMware virtualization servers
- Managing VMware virtualization servers
- Manage Veritas Replication VIB
- Manage Hyper-V assets
- Manage Gateways
- About Replication Gateway pair
- Managing Data Gateway
- Manage enclosure assets
- Adding a discovery host
- Configuration prerequisites for adding storage enclosures to an IMS
- Adding storage enclosures
- Adding RecoverPoint appliance for replication
- Manage Resiliency Platform host assets
- Section V. Managing networks
- Manage networks
- About network objects
- Manage settings
- Managing user authentication and permissions
- Configuring authentication domains
- Managing user authentication and permissions
- Manage networks
- Section VI. Working with resiliency groups
- Organize assets
- Viewing resiliency group details
- Manage virtual business services
- Organize applications
- Managing custom applications
- Managing service objectives
- Organize assets
- Section VII. Configuring for disaster recovery
- Configure using Resiliency Platform Data Mover
- Managing virtual machines for remote recovery (DR) in Amazon Web Services
- Prerequisites for configuring VMware virtual machines for recovery to AWS
- AWS Customization options panel
- Managing virtual machines for remote recovery (DR) to Azure
- Managing virtual machines for remote recovery (DR) to OpenStack
- Managing virtual machines for remote recovery (DR) to HUAWEI CLOUD
- Managing virtual machines for remote recovery (DR) to Orange Recovery Engine
- Managing virtual machines for remote recovery (DR) in vCloud Director
- Managing virtual machines for remote recovery (DR) using Resiliency Platform Data Mover
- Managing physical machines for remote recovery (DR) using Resiliency Platform Data Mover
- Configure using NetBackup
- Configure using 3rd party replication technology
- Preparing VMware virtual machines for using array-based replication
- Preparing Hyper-V virtual machines for using array-based replication
- Managing virtual machines for remote recovery (DR) using 3rd party replication technology
- Managing applications for remote recovery (DR)
- Preparing VMware virtual machines for using array-based replication
- Configure using Resiliency Platform Data Mover
- Section VIII. Managing disaster recovery
- Perform DR operations for virtual machines
- Performing the rehearsal operation for virtual machines
- Perform DR operations on a VBS
- Perform DR operations for applications
- Evacuate assets
- Manage Resiliency Plans
- About custom script
- Perform DR operations for virtual machines
- Section IX. Product settings
- View activities
- Manage reports
- View logs
- Manage Risk Notifications
- Managing settings for alerts and notifications and miscellaneous product settings
- Section X. Using Resiliency Platform APIs
- Section XI. Troubleshooting and Using command line interface
- Troubleshoot
- Recovery of Resiliency Platform components from disaster scenarios
- Resolving the Admin Wait state
- Use klish menu
- Use Application Enablement SDK
- Troubleshoot
Application inputs
Use the APIs in this category to add questions and their responses. These questions are displayed on the Resiliency Platform console.
Description: Use this interface to add questions to complete the discovery of an application instance.
These questions are displayed on the Resiliency Platform console if the application instance is partially discovered and user inputs are required to complete the discovery.
The following table lists the questions that you can add.
Table: Questions and error messages
Question data field | Description | Expected value |
---|---|---|
QID | Message ID for the question text. A whole number denoting the question number. | Any positive number. This is a mandatory field. |
QText | The question text. | Any text. This is a mandatory field. |
QDescription | Description of the question. | Any text. This is an optional field. |
Mandatory | Define this if an answer is mandatory to the question. | Yes or no. This is a mandatory field. |
IsError | Define this if an error occurs for a question. | Yes or no. This is an optional field. |
Encrypted | Define this if the answer needs encryption. | Yes or no. This is an optional field. Is set to "no" by default. |
ErrorCode | Error code of the error message. If the response received is incorrect user needs to set this field. | Any positive number. This is an optional field. |
ErrorMsg | Error message. If the response received is incorrect user needs to set this field. | Any text. This is an optional field. Between an error code and an error message any one must be mentioned in case of error. An error message is preferred. |
Is mandatory: No
Input parameter: Application instance object, question data
Return value: NA
Example:
my $qid1 = { 'QID' => 1, 'QDescription' => 'Specify the administrator user name to start the above instance.', 'Mandatory' => 'yes', 'QText' => 'Administrator user name for this instance', 'Encrypted' => 'no' }; $appInstObj->add_question($qid1);
Description: This interface returns the response to the questions which you have defined using the add_question API. You can call this API when you need responses to the questions. The responses assist in completing the application discovery.
Is mandatory: No
Input parameter: String: Question ID
Return value: Response to the question ID if successful, else undefined.
Example:
$appInstObj->get_qresponse($qid);
Where $qid is the question ID.
Description: Use this interface to define an error code and error message in response to any error that occurs for a particular question ID.
Is mandatory: No
Input parameter: String: Error code, error message, question ID
Return value: 0 with question data set with an error code and error message, else any positive number.
Example:
$appInstObj->set_qresponse($error_code, $error_string, $qid);