The API reference documentation for endpoints related to service offer management.
Service offer management (v1beta1)
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/service-catalog/public/openapi/service-registry-v1beta1/
https://global.api.greenlake.hpe.com/
Request
Retrieve a list of service offer regions by applying filters. Each service offer region represents a service offer provisioned in a specific region.
Pagination: This API supports cursor-based pagination. Provide the cursor in the next
query parameter to retrieve the next page.
Specifies the pagination cursor for the next page of service offer regions.
Specifies the number of results to be returned.
The filter
query parameter is used to filter the set of resources returned in a GET
request. The returned set of resources must match the criteria in the filter query parameter.
The value of the filter
query parameter is a subset of OData 4.0 filter expressions consisting of simple comparison operations joined by logical operators.
Supported fields: serviceOfferId
, status
, and region
.
Supported operand: eq
Supported operations: and
Return service offer regions with a given service offer ID
Return service offer regions with a given region
Return service offer regions with a given status
Return service offer regions with a given service offer ID and region
Return service offer regions with a given service offer ID and status
Return service offer regions with a given service offer ID and status and region
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/service-catalog/public/openapi/service-registry-v1beta1/service-catalog/v1beta1/service-offer-regions
https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-offer-regions
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X GET \
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/service-catalog/public/openapi/service-registry-v1beta1/service-catalog/v1beta1/service-offer-regions \
-H 'Authorization: YOUR_API_KEY_HERE'
Successful Response
The unique identifier for the service offer region.
The type of the resource.
The code name of the region where this service offer is available.
The current status of the service offer.
Date and time at which the service offer was created.
Date and time at which the service offer was updated.
A monotonically increasing update counter.
The URI reference to this resource.
A service offer represents a specific set of features or capabilities that can be independently identified and assigned access. Service offers are typically associated with roles and permissions, commerce, metering, quote-to-cash, or trial evaluations.
Cursor for the next page of resources.
{ "items": [ { … } ], "next": "64136af7-cd64-4b4e-88a8-150ab51a920d", "count": 1, "total": 10 }
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/service-catalog/public/openapi/service-registry-v1beta1/service-catalog/v1beta1/service-offer-regions/{id}
https://global.api.greenlake.hpe.com/service-catalog/v1beta1/service-offer-regions/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X GET \
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/service-catalog/public/openapi/service-registry-v1beta1/service-catalog/v1beta1/service-offer-regions/3fa85f64-5717-4562-b3fc-2c963f66afa6 \
-H 'Authorization: YOUR_API_KEY_HERE'
Successful Response
The unique identifier for the service offer region.
The code name of the region where this service offer is available.
The current status of the service offer.
Date and time at which the service offer was created.
Date and time at which the service offer was updated.
The URI reference to this resource.
{ "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "type": "/service-catalog/service-offer-region", "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" }