HPE GreenLake for Service Catalog developer guide
The details and examples in this guide will help you use the HPE GreenLake for Service Catalog APIs.
Prerequisites
Environment
The Service Catalog service is hosted at the following environment:
Hostname
The hostname for the service catalog APIs is as follows:
URI
The URIs for the service manager APIs are as follows:
-
GET
/service-catalog/v1beta1/service-managers
-
GET
/service-catalog/v1beta1/service-managers/{id}
-
GET
/service-catalog/v1beta1/per-region-service-managers
-
GET
/service-catalog/v1beta1/per-region-service-managers/{id}
The URIs for the service manager provisions APIs are as follows:
-
POST
/service-catalog/v1beta1/service-manager-provisions
-
GET
/service-catalog/v1beta1/service-manager-provisions
-
GET
/service-catalog/v1beta1/service-manager-provisions/{id}
-
DELETE
/service-catalog/v1beta1/service-manager-provisions/{id}
The URIs for the service-offer APIs are as follows:
-
GET
/service-catalog/v1beta1/service-offers
-
GET
/service-catalog/v1beta1/service-offers/{id}
The URIs for the service offer regions APIs are as follows:
-
GET
/service-catalog/v1beta1/service-offer-regions
-
GET
/service-catalog/v1beta1/service-offer-regions/{id}
The APIs rendering UI-features for service-catalog on GLP portal are as follows:
-
GET
/service-catalog/v1beta1/featured-services
-
GET
/service-catalog/v1beta1/service-catalog
-
GET
/service-catalog/v1beta1/detailed-service-offers/{id}
-
GET
/service-catalog/v1beta1/my-services
Access and permissions
​ You need the correct role and permissions to use the HPE GreenLake Service Catalog API. A role is a group of permissions that you can specify and assign to users in your HPE GreenLake workspace. There are three basic role types distinguished by the privileges defined in the authorization service: ​
- Administrator — has view, edit, and delete privileges in the workspace.
- Operator — has view and edit privileges in the workspace.
-
Observer
—
has only view privileges in the workspace.
​ The The Observer role with view permissions for Service Catalog (
ccs.app-catalog.view
) is sufficient to make Service-Manager GET API calls: ​ -
GET
/service-catalog/v1beta1/service-managers
-
GET
/service-catalog/v1beta1/service-managers/{id}
-
GET
/service-catalog/v1beta1/per-region-service-managers
-
GET
/service-catalog/v1beta1/per-region-service-managers/{id}
The Observer role with view permission for Service Provision (ccs.app-provision.view
) is sufficient to make Service-Manager Provision GET API calls
-
GET
/service-catalog/v1beta1/service-manager-provisions
-
GET
/service-catalog/v1beta1/service-manager-provisions/{id}
​
The Administrator / Operator role with edit permissions for Service Provision (ccs.app-provision.edit
) is required to make Service Provision POST and DELETE API calls:
​
-
POST
/service-catalog/v1beta1/service-manager-provisions
-
DELETE
/service-catalog/v1beta1/service-manager-provisions/{id}
The Observer role with view permissions for Service Catalog (ccs.service-catalog.view
) is sufficient to make Service Offer GET API calls:
​
-
GET
/service-catalog/v1beta1/service-offers
-
GET
/service-catalog/v1beta1/service-offers/{id}
The Observer role with view permission for Service Provision (ccs.service-catalog.view
) is sufficient to make Service Offer Region GET API calls:
​
-
GET
/service-catalog/v1beta1/service-offer-regions
-
GET
/service-catalog/v1beta1/service-offer-regions/{id}
The Observer role with view permission for Service Catalog (ccs.service-catalog.view
) is sufficient to make GET API calls pertaining to the UI-Management API calls.
-
GET
/service-catalog/v1beta1/featured-services
-
GET
/service-catalog/v1beta1/service-catalog
-
GET
/service-catalog/v1beta1/detailed-service-offers/{id}
-
GET
/service-catalog/v1beta1/my-services
You can find out more in the HPE GreenLake Edge to Cloud Platform User Guide. You can: ​
- Find a list of preconfigured roles and the permissions they have.
- Learn how to create custom roles.
- Discover how to assign roles to users.
Making it all Work
Generating a token
You must configure API credentials and generate an access token to make API calls. HPE GreenLake APIs use OAuth-based access tokens used as an authorization bearer token.
To access this HPE GreenLake Service Catalog API, proceed as follows:
- Connect to the HPE GreenLake edge-to-cloud platform UI workspace.
- Go to Manage Workspaces > API > Create Credentials .
- Select  HPE GreenLake platform from the Select Service Manager drop-down to create the credentials and then generate access tokens for HPE GreenLake platform service APIs. If you do not see HPE GreenLake Platform as an option when configuring API client credentials, see the Getting Started Guide for more information.
Getting an access token
With the client ID and client secret, there are two ways to fetch the access token programmatically. They are as follows:
Run the cURL command or the Python script below to get the token from the response["access_token"]
:
-
Using cURL:
curl -X POST https://sso.common.cloud.hpe.com/as/token.oauth2 -H "Content-Type: application/x-www-form-urlencoded" -d "grant_type=client_credentials&client_id=$YOUR_CLIENT_ID&client_secret=$YOUR_CLIENT_SECRET"
-
Using Python:
from oauthlib.oauth2 import BackendApplicationClient from requests.auth import HTTPBasicAuth from requests_oauthlib import OAuth2Session client = BackendApplicationClient(YOUR_CLIENT_ID) oauth = OAuth2Session(client=client) auth = HTTPBasicAuth(YOUR_CLIENT_ID, YOUR_CLIENT_SECRET) token = oauth.fetch_token(token_url='https://sso.common.cloud.hpe.com/as/token.oauth2', auth=auth) print(token["access_token"])
This access token is used as the bearer token to authenticate the Service Catalog APIs. The token is valid for two hours.
Get service managers
Use this GET request to retrieve a list of the service managers available in your workspace.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-managers
Sample API response:
{
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-managers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"description": "Manage your wired, wireless, and WAN infrastructure",
"createdAt": "2021-04-23T07:50:30.400Z",
"updatedAt": "2021-04-29T07:50:30.400Z",
"generation": 1,
"type": "/service-catalog/service-manager"
}
],
"offset": 0,
"count": 1,
"total": 10
}
Get service manager details
Use this GET API call to retrieve details on a particular service manager in a workspace by specifying a service manager ID. The service manager ID is 36-character alphanumeric universally unique identifier (UUID).
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-managers/{id}
Sample response:
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-managers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"description": "Manage your wired, wireless, and WAN infrastructure",
"createdAt": "2021-04-23T07:50:30.400Z",
"updatedAt": "2021-04-29T07:50:30.400Z",
"generation": 1,
"type": "/service-catalog/service-manager"
}
Get a list of service managers by region
Return a list of all service managers in your workspace, categorized by the regions the service managers are deployed in.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/per-region-service-managers
Sample response:
{
"items": [
{
"id": "us-east",
"regionName": "US East",
"serviceManagers": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-managers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"description": "Manage your wired, wireless, and WAN infrastructure",
"createdAt": "2021-04-23T07:50:30.400Z",
"updatedAt": "2021-04-29T07:50:30.400Z",
"generation": 1,
"type": "/service-catalog/service-manager"
}
],
"generation": 1,
"type": "/service-catalog/service-manager"
}
],
"offset": 0,
"count": 1,
"total": 10
}
Filter this API by the mspSupported
field using the filter query parameter, for example, filter=mspSupported eq true
or filter=mspSupported eq false
.
Get service managers in a specific region
Retrieve a list of all service managers deployed in a specified region. Available regions
-
ap-ausnz
-
ap-east
-
ap-northeast
-
ap-south
-
ap-southeast
-
ca-central
-
ca-east
-
cn-east
-
cn-north
-
eu-central
-
eu-north
-
eu-west
-
mea
-
sa-east
-
us-central
-
us-east
-
us-gov
-
us-west
-
att-mcd-us-west
-
att-ent-us-west
-
att-hilton-us-west
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/per-region-service-managers/{id}
Sample response:
{
"id": "us-west",
"regionName": "US West",
"serviceManagers": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-managers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"description": "Manage your wired, wireless, and WAN infrastructure",
"createdAt": "2021-04-23T07:50:30.400Z",
"updatedAt": "2021-04-29T07:50:30.400Z",
"generation": 1,
"type": "/service-catalog/service-manager"
}
],
"generation": 1,
"type": "/service-catalog/service-manager"
}
Get a list of provisioned service managers
Retrieve a list of all service managers provisioned for your workspace.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-manager-provisions
Sample response:
{
"items": [
{
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa1",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa1",
"serviceManager": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-manager/3fa85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": "us-west",
"provisionStatus": "PROVISION_INITIATED",
"createdBy": "john@acme.com",
"createdAt": "2021-04-23T07:50:30.400Z",
"updatedAt": "2021-04-29T07:50:30.400Z",
"generation": 1,
"type": "/service-catalog/service-manager-provision"
}
],
"offset": 0,
"count": 1,
"total": 10
}
Filter this API by the serviceManagerId
or status
or by region
field using the filter query parameter, for example, serviceManagerId eq '767c0c92-5ecc-4952-85d6-06d2bcaaf050'
, status eq 'PROVISIONED'
, status eq 'UNPROVISIONED'
, region eq 'us-west'
.
Get a specific service manager provisioned by id for a workspace
Use this GET request to retrieve information on a provisioned service manager by supplying a service manager provisioned ID.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-manager-provisions/{id}
Sample response:
{
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa1",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa1",
"serviceManager": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-manager/3fa85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": "us-west",
"provisionStatus": "PROVISION_INITIATED",
"createdBy": "john@acme.com",
"createdAt": "2021-04-23T07:50:30.400Z",
"updatedAt": "2021-04-29T07:50:30.400Z",
"generation": 1,
"type": "/service-catalog/service-manager-provision"
}
Provision a service manager for a workspace
Use this POST API call to provision a service manager to a chosen region in your workspace. Provisioning a service manager is an asynchronous process. Check the provisionStatus
field to see the current status.
info
- Delete any service manager provision entries that failed provisioning.
- If a service manager provisioning already exists, a conflict is reported.
POST https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-manager-provisions
Payload:
{
"serviceManagerId": "{id}",
"region": "{region}"
}
Sample response:
{
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa1",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa1",
"serviceManager": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-manager/3fa85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": "us-west",
"createdBy": "john@acme.com",
"generation": 1,
"type": "/service-catalog/service-manager-provision"
}
Delete a service manager provisioned for a workspace
Use this DELETE API call to un-provision or delete a provisioned service manager. Before starting the delete operation, ensure that there are no devices associated with the workspace.
DELETE https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-manager-provisions/{id}
The DELETE API returns a 204 status code on successful deletion.
Get service offers
Use this GET API call to get the service offers available in a workspace.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-offers
Sample response:
{
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"resourceUri": "/service-catalog/v1beta1/service-offers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"slug": "AC",
"overview": "Aruba Central overview",
"capabilities": [
"Capability 1",
"Capability 2"
],
"categories": [
"COMPUTE",
"NETWORKING"
],
"serviceOfferType": "SAAS",
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"isDefault": false,
"featuresSupported": [
"DEEP_LINKING",
"SERVICE_PROVISIONING"
],
"languagesSupported": [
"en-US",
"de-DE"
],
"documentationUrl": "https://www.arubanetworks.com/techdocs/central/latest/content/home.htm",
"termsOfServiceUrl": "https://www.hpe.com/us/en/about/legal/ccs-terms.html#Storage",
"testDriveUrl": "https://testdrive.greenlake.hpe.com",
"contactSalesUrl": "https://contact-sales.hpe.com/",
"status": "PUBLISHED",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-offer",
"shortDescription": "description",
"staticLaunchUrl": "https://${sub-domain}/infosight.hpe.com",
"evalUrl": "https://connect.hpe.com/HPE_Backup_and_Recovery_Trial",
"brokerUri": "/igc",
"preProvisionMessage": "Users will be logged out during provisioning."
}
],
"next": "64136af7-cd64-4b4e-88a8-150ab51a920d",
"count": 1,
"total": 10
}
Filter this API by the serviceManagerId
or categoty
or isDefault
or staticLaunchUrl
or status
or slug
field using the filter query parameter, for example, status eq 'PROVISIONED'
, status eq 'UNPROVISIONED'
.
Get service offer details by ID
Use this GET API call to get the details of a specific service offer.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-offers/{id}
Sample response:
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"resourceUri": "/service-catalog/v1beta1/service-offers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"slug": "AC",
"overview": "Aruba Central overview",
"capabilities": [
"Capability 1",
"Capability 2"
],
"categories": [
"COMPUTE",
"NETWORKING"
],
"serviceOfferType": "SAAS",
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"isDefault": false,
"featuresSupported": [
"DEEP_LINKING",
"SERVICE_PROVISIONING"
],
"languagesSupported": [
"en-US",
"de-DE"
],
"documentationUrl": "https://www.arubanetworks.com/techdocs/central/latest/content/home.htm",
"termsOfServiceUrl": "https://www.hpe.com/us/en/about/legal/ccs-terms.html#Storage",
"testDriveUrl": "https://testdrive.greenlake.hpe.com",
"contactSalesUrl": "https://contact-sales.hpe.com/",
"status": "PUBLISHED",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-offer",
"shortDescription": "description",
"staticLaunchUrl": "https://${sub-domain}/infosight.hpe.com",
"evalUrl": "https://connect.hpe.com/HPE_Backup_and_Recovery_Trial",
"brokerUri": "/igc",
"preProvisionMessage": "Users will be logged out during provisioning."
}
Get a service offer regions
Use this GET API call, to get all the available service offers regions.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-offer-regions
Sample response:
{
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-offer-regions/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"serviceOffer": {
"id": "4ab85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-offers/4ab85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": "us-east",
"status": "ONBOARDED",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-offer-region"
}
],
"next": "64136af7-cd64-4b4e-88a8-150ab51a920d",
"count": 1,
"total": 10
}
Filter this API by the serviceOfferId
or region
or status
or staticLaunchUrl
or status
or slug
field using the filter query parameter, for example, serviceOfferId eq '767c0c92-5ecc-4952-85d6-06d2bcaaf050'
, region eq 'PROVISIONED'
, or status eq 'PUBLISHED'
.
Get details of a specific service offer region
Use this GET API call to get the details of a specific service offer region.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-offer-regions/{id}
Sample response:
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-offer-regions/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"serviceOffer": {
"id": "4ab85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-offers/4ab85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": "us-east",
"status": "ONBOARDED",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-offer-region"
}
Get featured service offers
Use this GET API call to get the featured service offers. These would be (all or a subset of) service-offers that have not yet been provisioned in the current workspace.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/featured-services
Sample response:
{
"items": [
{
"id": "COMPUTE",
"type": "/service-catalog/featured-service",
"servicesWithRegions": [
{
"id": "1",
"type": "/service-catalog/service-with-regions",
"serviceOffer": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"resourceUri": "/service-catalog/v1beta1/service-offers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"slug": "AC",
"overview": "Aruba Central overview",
"capabilities": [
"Capability 1",
"Capability 2"
],
"categories": [
"COMPUTE",
"NETWORKING"
],
"serviceOfferType": "SAAS",
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"isDefault": false,
"featuresSupported": [
"DEEP_LINKING",
"SERVICE_PROVISIONING"
],
"languagesSupported": [
"en-US",
"de-DE"
],
"documentationUrl": "https://www.arubanetworks.com/techdocs/central/latest/content/home.htm",
"termsOfServiceUrl": "https://www.hpe.com/us/en/about/legal/ccs-terms.html#Storage",
"testDriveUrl": "https://testdrive.greenlake.hpe.com",
"contactSalesUrl": "https://contact-sales.hpe.com/",
"status": "PUBLISHED",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-offer",
"shortDescription": "description",
"staticLaunchUrl": "https://${sub-domain}/infosight.hpe.com",
"evalUrl": "https://connect.hpe.com/HPE_Backup_and_Recovery_Trial",
"brokerUri": "/igc",
"preProvisionMessage": "Users will be logged out during provisioning."
},
"availableRegions": [
{
"id": "us-east",
"name": "US East",
"type": "/service-catalog/region"
}
]
}
]
}
],
"next": "STORAGE",
"count": 1,
"total": 10
}
Use next
to specify the category for the next page of featured services, for example, "STORAGE"
.
Get service-offers available in the service catalog
Use this GET API call to get the service offers in catalog view.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-catalog
Sample response:
{
"items": [
{
"id": "COMPUTE",
"type": "/service-catalog/service-catalog",
"servicesWithRegions": [
{
"id": "1",
"type": "/service-catalog/service-with-regions",
"serviceOffer": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"resourceUri": "/service-catalog/v1beta1/service-offers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"slug": "AC",
"overview": "Aruba Central overview",
"capabilities": [
"Capability 1",
"Capability 2"
],
"categories": [
"COMPUTE",
"NETWORKING"
],
"serviceOfferType": "SAAS",
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"isDefault": false,
"featuresSupported": [
"DEEP_LINKING",
"SERVICE_PROVISIONING"
],
"languagesSupported": [
"en-US",
"de-DE"
],
"documentationUrl": "https://www.arubanetworks.com/techdocs/central/latest/content/home.htm",
"termsOfServiceUrl": "https://www.hpe.com/us/en/about/legal/ccs-terms.html#Storage",
"testDriveUrl": "https://testdrive.greenlake.hpe.com",
"contactSalesUrl": "https://contact-sales.hpe.com/",
"status": "PUBLISHED",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-offer",
"shortDescription": "description",
"staticLaunchUrl": "https://${sub-domain}/infosight.hpe.com",
"evalUrl": "https://connect.hpe.com/HPE_Backup_and_Recovery_Trial",
"brokerUri": "/igc",
"preProvisionMessage": "Users will be logged out during provisioning."
},
"availableRegions": [
{
"id": "us-east",
"name": "US East",
"type": "/service-catalog/region"
}
]
}
]
}
],
"next": "STORAGE",
"count": 1,
"total": 10
}
Use next
to specify the category for the next page of featured services, for example, "STORAGE"
.
Get service offer details
Use this GET API call to get the detailed view of a specific service offer.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/detailed-service-offers/{id}
Sample response:
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"type": "/service-catalog/detailed-service-offer",
"serviceOffer": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"resourceUri": "/service-catalog/v1beta1/service-offers/3fa85f64-5717-4562-b3fc-2c963f66afa6",
"slug": "AC",
"overview": "Aruba Central overview",
"capabilities": [
"Capability 1",
"Capability 2"
],
"categories": [
"COMPUTE",
"NETWORKING"
],
"serviceOfferType": "SAAS",
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"isDefault": false,
"featuresSupported": [
"DEEP_LINKING",
"SERVICE_PROVISIONING"
],
"languagesSupported": [
"en-US",
"de-DE"
],
"documentationUrl": "https://www.arubanetworks.com/techdocs/central/latest/content/home.htm",
"termsOfServiceUrl": "https://www.hpe.com/us/en/about/legal/ccs-terms.html#Storage",
"testDriveUrl": "https://testdrive.greenlake.hpe.com",
"contactSalesUrl": "https://contact-sales.hpe.com/",
"status": "PUBLISHED",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-offer",
"shortDescription": "description",
"staticLaunchUrl": "https://${sub-domain}/infosight.hpe.com",
"evalUrl": "https://connect.hpe.com/HPE_Backup_and_Recovery_Trial",
"brokerUri": "/igc",
"preProvisionMessage": "Users will be logged out during provisioning.",
"workspaceTypes": "MSP",
"logo": {
"image": "https://test-url.com/3fa85f64-5717-4562-b3fc-2c963f66afa6/logo/cia85f64-5717-4562-b3fc-2c963f66afa6.png",
"description": "This is sample description"
},
"screenshots": [
{
"image": "https://test-url.com/3fa85f64-5717-4562-b3fc-2c963f66afa6/logo/cia85f64-5717-4562-b3fc-2c963f66afa6.png",
"description": "This is sample description"
}
]
},
"availableRegions": [
{
"id": "us-east",
"name": "US East",
"type": "/service-catalog/region",
"locations": [
"Viriginia",
"California"
]
}
],
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61",
"serviceOfferId": "8e22512f-da36-43f7-8141-83c6fc4b025b",
"name": "Aruba Central"
},
"provisions": [
{
"name": "Aruba Central",
"categories": [
"NETWORKING"
],
"slug": "CENTRAL",
"staticLaunchUrl": "https://${sub-domain}/infosight.hpe.com",
"workspaceTypes": [
"STANDALONE",
"MSP"
],
"workspaceOpModes": [
"MSP_OWNED_INVENTORY"
],
"serviceManagerProvision": {
"id": "2fa85f6457174562b3fc2c963f66afa1",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fa85f6457174562b3fc2c963f66afa1",
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"region": "us-east",
"provisionStatus": "PROVISIONED",
"generation": 1,
"type": "/service-catalog/service-manager-provision"
},
"serviceProvision": {
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa9",
"resourceUri": "/service-catalog/v1beta1/service-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa9",
"serviceOffer": {
"id": "4ab85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-offers/4ab85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": {
"id": "us-east",
"name": "US East",
"type": "/service-catalog/region"
},
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"serviceManagerProvision": {
"id": "2fb85f64-5717-4562-b3fc-2c963f66afa2",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fb85f64-5717-4562-b3fc-2c963f66afa2",
"accountType": "MSP",
"operationalMode": "MSP_OWNED_INVENTORY",
"provisionStatus": "PROVISIONED",
"mspConversionStatus": "MSP_CONVERTED"
},
"workspace": {
"id": "0df70974872311efa48a06bbf0463de0",
"resourceUri": "/workspaces/v1/workspaces/4ab85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Hewlett Packard Enterprise",
"organizationId": "5ab85f64-6717-5562-c3fc-3c963f66afa6"
},
"serviceManagerInstanceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"provisionStatus": "PROVISIONED",
"reason": "Failed to configure IDP.",
"createdBy": "user@company.com",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-provision"
}
}
],
"orgSingletonServiceProvisions": [
{
"name": "Aruba Central",
"categories": [
"NETWORKING"
],
"slug": "CENTRAL",
"staticLaunchUrl": "https://${sub-domain}/infosight.hpe.com",
"workspaceTypes": [
"STANDALONE",
"MSP"
],
"workspaceOpModes": [
"MSP_OWNED_INVENTORY"
],
"serviceManagerProvision": {
"id": "2fa85f6457174562b3fc2c963f66afa1",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fa85f6457174562b3fc2c963f66afa1",
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"region": "us-east",
"provisionStatus": "PROVISIONED",
"generation": 1,
"type": "/service-catalog/service-manager-provision"
},
"serviceProvision": {
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa9",
"resourceUri": "/service-catalog/v1beta1/service-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa9",
"serviceOffer": {
"id": "4ab85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-offers/4ab85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": {
"id": "us-east",
"name": "US East",
"type": "/service-catalog/region"
},
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"serviceManagerProvision": {
"id": "2fb85f64-5717-4562-b3fc-2c963f66afa2",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fb85f64-5717-4562-b3fc-2c963f66afa2",
"accountType": "MSP",
"operationalMode": "MSP_OWNED_INVENTORY",
"provisionStatus": "PROVISIONED",
"mspConversionStatus": "MSP_CONVERTED"
},
"workspace": {
"id": "0df70974872311efa48a06bbf0463de0",
"resourceUri": "/workspaces/v1/workspaces/4ab85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Hewlett Packard Enterprise",
"organizationId": "5ab85f64-6717-5562-c3fc-3c963f66afa6"
},
"serviceManagerInstanceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"provisionStatus": "PROVISIONED",
"reason": "Failed to configure IDP.",
"createdBy": "user@company.com",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-provision"
}
}
]
}
Get a list of service-offer-provision and service manager provision entries
Use this GET API call to get the list of services provisioned in the current workspace.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/my-services
Sample response:
{
"items": [
{
"id": "us-east",
"type": "/service-catalog/service-offer",
"provisions": [
{
"name": "Aruba Central",
"categories": [
"NETWORKING"
],
"slug": "CENTRAL",
"staticLaunchUrl": "https://${sub-domain}/infosight.hpe.com",
"workspaceTypes": [
"STANDALONE",
"MSP"
],
"workspaceOpModes": [
"MSP_OWNED_INVENTORY"
],
"serviceManagerProvision": {
"id": "2fa85f6457174562b3fc2c963f66afa1",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fa85f6457174562b3fc2c963f66afa1",
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"region": "us-east",
"provisionStatus": "PROVISIONED",
"generation": 1,
"type": "/service-catalog/service-manager-provision"
},
"serviceProvision": {
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa9",
"resourceUri": "/service-catalog/v1beta1/service-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa9",
"serviceOffer": {
"id": "4ab85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-offers/4ab85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": {
"id": "us-east",
"name": "US East",
"type": "/service-catalog/region"
},
"serviceManager": {
"id": "7267b0e0-013c-4181-8c27-01b395ed0b61",
"resourceUri": "/service-catalog/v1beta1/service-managers/7267b0e0-013c-4181-8c27-01b395ed0b61"
},
"serviceManagerProvision": {
"id": "2fb85f64-5717-4562-b3fc-2c963f66afa2",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fb85f64-5717-4562-b3fc-2c963f66afa2",
"accountType": "MSP",
"operationalMode": "MSP_OWNED_INVENTORY",
"provisionStatus": "PROVISIONED",
"mspConversionStatus": "MSP_CONVERTED"
},
"workspace": {
"id": "0df70974872311efa48a06bbf0463de0",
"resourceUri": "/workspaces/v1/workspaces/4ab85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Hewlett Packard Enterprise",
"organizationId": "5ab85f64-6717-5562-c3fc-3c963f66afa6"
},
"serviceManagerInstanceId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"provisionStatus": "PROVISIONED",
"reason": "Failed to configure IDP.",
"createdBy": "user@company.com",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-provision"
}
}
]
}
],
"next": "us-west",
"count": 1,
"total": 10
}
Use next
to specify the category for the next page of featured services, for example, "STORAGE"
.
Get a list of service offer provision entries
Use this GET API call to get the service-offers provision list by filters applied.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-provisions
Sample response:
{
"items": [
{
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa9",
"resourceUri": "/service-catalog/{version}/service-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa9",
"serviceOffer": {
"id": "4ab85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"resourceUri": "/service-catalog/v1alpha1/service-offers/4ab85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": "us-west",
"serviceManager": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-managers/3fa85f64-5717-4562-b3fc-2c963f66afa6"
},
"serviceManagerProvision": {
"id": "2fb85f64-5717-4562-b3fc-2c963f66afa2",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fb85f64-5717-4562-b3fc-2c963f66afa2",
"accountType": "BASIC_ORGANIZATION",
"operationalMode": "DEFAULT",
"provisionStatus": "PROVISION_INITIATED",
"mspConversionStatus": "MSP_CONVERSION_INITIATED"
},
"workspace": {
"id": "0df70974872311efa48a06bbf0463de0",
"resourceUri": "/workspaces/v1/workspaces/{workspaceId}",
"name": "Hewlett Packard Enterprise",
"organizationId": "5ab85f64-6717-5562-c3fc-3c963f66afa6",
"workspaceTransferStatus": "TRANSFER_INITIATED",
"mspId": "3ca24f18-5013-4562-b3fc-2d992f22ade2"
},
"serviceManagerInstanceId": "2fc85f64-5717-4562-b3fc-2c963f66afa3",
"provisionStatus": "PROVISION_INITIATED",
"reason": "Failed to configure IDP.",
"retryCount": 0,
"createdBy": "user@company.com",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-provision"
}
],
"next": "64136af7-cd64-4b4e-88a8-150ab51a920d",
"count": 1,
"total": 10
}
Filter this API by the Hpe-workspace-id
field using the query parameter, for example, Hpe-workspace-id=0df70974872311efa48a06bbf0463de0
or unredacted=false
or all=true
.
Filter this API by the serviceProvisionId
or workspaceId
or servcieManageProvisionId
or serviceOfferId
or region
or serviceManager
or serviceManagerInstanceId
or status
or organizationId
field using the filter query parameter, for example, workspaceId eq '0df70974872311efa48a06bbf0463de0'
, status eq 'PROVISIONED'
, status eq 'UNPROVISIONED'
.
Initial step to provision a service offer in a region
Use this POST API call to provision a service offer to a chosen region in your workspace. Check the provisionStatus
field to see the current status.
info
- Call app provision. If app provision does not exit, trigger app provision and raise events.
- If a service provisioning already exists, a conflict is reported.
POST https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-provisions
Payload:
{
"serviceOfferId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"region": "us-west"
}
Sample response:
{
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa9",
"resourceUri": "/service-catalog/{version}/service-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa9",
"serviceOffer": {
"id": "4ab85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"resourceUri": "/service-catalog/v1alpha1/service-offers/4ab85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": "us-west",
"serviceManager": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-managers/3fa85f64-5717-4562-b3fc-2c963f66afa6"
},
"serviceManagerProvision": {
"id": "2fb85f64-5717-4562-b3fc-2c963f66afa2",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fb85f64-5717-4562-b3fc-2c963f66afa2",
"accountType": "BASIC_ORGANIZATION",
"operationalMode": "DEFAULT",
"provisionStatus": "PROVISION_INITIATED",
"mspConversionStatus": "MSP_CONVERSION_INITIATED"
},
"workspace": {
"id": "0df70974872311efa48a06bbf0463de0",
"resourceUri": "/workspaces/v1/workspaces/{workspaceId}",
"name": "Hewlett Packard Enterprise",
"organizationId": "5ab85f64-6717-5562-c3fc-3c963f66afa6",
"workspaceTransferStatus": "TRANSFER_INITIATED",
"mspId": "3ca24f18-5013-4562-b3fc-2d992f22ade2"
},
"serviceManagerInstanceId": "2fc85f64-5717-4562-b3fc-2c963f66afa3",
"provisionStatus": "PROVISION_INITIATED",
"reason": "Failed to configure IDP.",
"retryCount": 0,
"createdBy": "user@company.com",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-provision"
}
Get a detailed service offer provision entry
Use this GET API call to get fetch service provision details for an ID.
GET https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-provisions/{id}
Sample response:
{
"id": "2fa85f64-5717-4562-b3fc-2c963f66afa9",
"resourceUri": "/service-catalog/{version}/service-provisions/2fa85f64-5717-4562-b3fc-2c963f66afa9",
"serviceOffer": {
"id": "4ab85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Aruba Central",
"resourceUri": "/service-catalog/v1alpha1/service-offers/4ab85f64-5717-4562-b3fc-2c963f66afa6"
},
"region": "us-west",
"serviceManager": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"resourceUri": "/service-catalog/v1beta1/service-managers/3fa85f64-5717-4562-b3fc-2c963f66afa6"
},
"serviceManagerProvision": {
"id": "2fb85f64-5717-4562-b3fc-2c963f66afa2",
"resourceUri": "/service-catalog/v1beta1/service-manager-provisions/2fb85f64-5717-4562-b3fc-2c963f66afa2",
"accountType": "BASIC_ORGANIZATION",
"operationalMode": "DEFAULT",
"provisionStatus": "PROVISION_INITIATED",
"mspConversionStatus": "MSP_CONVERSION_INITIATED"
},
"workspace": {
"id": "0df70974872311efa48a06bbf0463de0",
"resourceUri": "/workspaces/v1/workspaces/{workspaceId}",
"name": "Hewlett Packard Enterprise",
"organizationId": "5ab85f64-6717-5562-c3fc-3c963f66afa6",
"workspaceTransferStatus": "TRANSFER_INITIATED",
"mspId": "3ca24f18-5013-4562-b3fc-2d992f22ade2"
},
"serviceManagerInstanceId": "2fc85f64-5717-4562-b3fc-2c963f66afa3",
"provisionStatus": "PROVISION_INITIATED",
"reason": "Failed to configure IDP.",
"retryCount": 0,
"createdBy": "user@company.com",
"createdAt": "2021-04-23T10:20:30.400+02:30",
"updatedAt": "2021-04-29T10:20:30.400+02:30",
"generation": 1,
"type": "/service-catalog/service-provision"
}
Delete a service provision
Use this DELETE API call to un-provision and delete a specific service provision
DELETE https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-provisions/{id}
The DELETE API returns a 204 status code on successful deletion.
Filtering
Filters provide the ability to limit the resources that take part in the action of a REST call. When a REST call includes a filter, the action is restricted to a response that meets the filter requirements. Filters are specified by using the query parameter filter
.
A filtering example
GET <URI>?filter=status eq 'PROVISIONED'
This example shows a simple filter. The resources returned by the query are limited to results when the attribute status
has the value PROVISIONED
. Note that within the filter, the separator is a space.
Filtering query parameters
filter = <property> <operation> <literal>
Property is the name of an attribute in the requested resource type. The property name is always to the left of the Operation.
Operation evaluated. The Service Catalog API supports the eq operation for filtering. The eq operation is used to compare the value of a property with a literal. Examples of using the eq operations:
-
eq
:
status eq 'UNPROVISIONED'
: The status is unprovisioned. -
eq
:
serviceManagerID eq '5aa0d7b7-5896-4a24-9090-71334a95db38'
: Filters on a specified service manager ID. -
eq
:
mspSupported eq false
: MSP is not supported.
Literal the property is to be compared against. Operations compare properties against literals. For a successful matching operation, the types must match and the syntax determines the type of the literals. For example, the filter (age eq '3')
would not work if age is an integer, and (age eq 3)
would not work if age is a string.
Due to URL encoding, reserved characters !
#
$
&
'
(
)
*
+
,
/
:
;
=
?
@
[
]
in string literals must be replaced with percent encoded equivalents.
The following examples show typed literals.
-
String
: 'anything in single quotes'
- Reserved characters in string literals must be URL encoded.
- Integer : -100,-1,0,1,100
- Boolean : true, false
-
Null
: null.
- Null is equal to itself and nothing else. Null is not greater or less than anything.
OData filtering reference
This filtering is a subset of OData 4.0 filtering.