Service Name |
Service Description |
API Updates and Changes |
Catalog |
Access Service Broker catalog items and catalog sources, including content sharing and the request of catalog items. |
New input parameter expand option expand=user and new object type parameter in response to show full user names for the following endpoints:
-
GET /catalog/api/items
-
GET /catalog/api/items/{id}
-
GET /catalog/api/admin/sources
-
GET /catalog/api/admin/sources/{sourceId}
For information about the response, see the explanation in Show full user names in deployment details below. |
Custom Forms |
Define dynamic form rendering and customization behavior in Automation Service Broker and Automation Assembler. |
Only Service Broker administrators or users with the Manage Content custom role can access the following endpoints:
For information about custom roles, see Custom user roles in VMware Aria Automation |
Deployment |
Access deployment objects and platforms or blueprints that have been deployed into the system. |
New input parameter expand option expand=user and new object type parameter in response to show full user names for the following endpoints:
-
GET /deployment/api/deployments
-
GET /deployment/api/deployments/{deploymentId}
-
GET /deployment/api/resources
-
GET /deployment/api/resources/{resourceId}
For information about the response, see the explanation in Show full user names in deployment details below. |
Pipelines |
Create and run pipelines for continuous delivery of your applications to production. |
The response of the following endpoint no longer lists SHA-1 as a fingerprints certificate. GET /codestream/api/endpoint-certificate |
Policies |
Interact with policies created in Service Broker. |
New input parameter expand option expand=user and new object type parameter in response to show full user names for the following endpoints:
For information about the response, see the explanation in Show full user names in deployment details below. |
Show full user names in deployment details
The following information applies to certain endpoints in the catalog, deployment, and policies API services.
When expand=user
is passed as input and the Admin settings "show name of users" is enabled, a new object type parameter is returned for each AD ID type output parameter.
AD ID type output parameter |
New object type parameter |
createdBy |
creator |
lastUpdatedBy |
lastUpdater |
ownedBy |
owner |
Each object type has five fields: id
, firstname
, lastname
, email
, and type
as in the following example. Only non-null fields are included in the object.
"creator": {
"id": "[email protected]",
"firstname": "Example",
"lastname": "User",
"email": "[email protected]",
"type": "USER" }