MetadataDeployDetails
Retrieves additional details about a metadata deployment job in Salesforce.
Input
| Name | Type | Description |
| JobId | String | The unique job ID associated with the metadata deployment operation. |
Result Set Columns
| Name | Type | Description |
| ComponentFailures_changed | String | Indicates whether the component was modified as a result of the deployment. A value of 'true' means the deployed component was different from the existing one. |
| ComponentFailures_componentType | String | The type of metadata component that failed during deployment, such as ApexClass, CustomObject, or Workflow. |
| ComponentFailures_created | String | Indicates whether the component was newly created during the deployment process. A value of 'true' means it did not exist prior to deployment. |
| ComponentFailures_createdDate | String | The date and time when the component was created, applicable if the deployment created it. |
| ComponentFailures_deleted | String | Indicates whether the component was deleted as part of this deployment. The value is 'true' if it was removed. |
| ComponentFailures_fileName | String | The file path and name within the ZIP archive that corresponds to the failed component. |
| ComponentFailures_fullName | String | The full unique name of the failed metadata component, typically combining object and API name. |
| ComponentFailures_problem | String | Details about the issue that caused the component to fail during deployment. |
| ComponentFailures_problemType | String | The type of problem encountered during deployment. Valid values are 'Warning' or 'Error'. |
| ComponentFailures_success | String | Indicates whether the component deployment was successful. The value is 'false' if there was a failure or warning. |
| ComponentSuccesses_changed | String | Indicates whether the deployed component was changed. A value of 'false' means it matched what was already in the organization. |
| ComponentSuccesses_componentType | String | The type of metadata component successfully deployed. |
| ComponentSuccesses_created | String | Indicates whether the component was created during this deployment. The value is 'true' if it did not previously exist. |
| ComponentSuccesses_createdDate | String | The date and time when the component was successfully created. |
| ComponentSuccesses_deleted | String | Indicates whether the component was deleted as part of this deployment. The value is 'true' if it was removed. |
| ComponentSuccesses_fileName | String | The file name from the ZIP archive that corresponds to the successfully deployed component. |
| ComponentSuccesses_fullName | String | The full unique name of the successfully deployed metadata component. |
| ComponentSuccesses_id | String | The unique internal Salesforce ID assigned to the deployed component. |
| ComponentSuccesses_success | String | Indicates whether the component deployment was successful (true) or not (false). |
| NumTestsRun | String | The total number of Apex unit tests executed as part of the deployment process. |
| NumFailures | String | The number of Apex tests that failed during the deployment. |
| TotalTime | String | The total time taken to run all tests during deployment, measured in milliseconds. |