Marketplace Offering Access Subnets
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/marketplace-offering-access-subnets/ |
List resources |
| GET | /api/marketplace-offering-access-subnets/{uuid}/ |
Retrieve a resource |
| POST | /api/marketplace-offering-access-subnets/ |
Create |
| PUT | /api/marketplace-offering-access-subnets/{uuid}/ |
Update a resource |
| PATCH | /api/marketplace-offering-access-subnets/{uuid}/ |
Partially update a resource |
| DELETE | /api/marketplace-offering-access-subnets/{uuid}/ |
Delete |
List resources
Returns a paginated list of resources accessible to the current user.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
marketplace_offering_access_subnets_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
description |
string | Description |
inet |
string | Inet |
offering |
string (uri) | Offering URL |
offering_uuid |
string (uuid) | Offering UUID |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
offering |
string (uri) |
offering_name |
string |
Retrieve a resource
Returns details of a specific resource.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
marketplace_offering_access_subnets_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
offering |
string (uri) |
offering_name |
string |
Create
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
OfferingAccessSubnetRequest - API Source:
marketplace_offering_access_subnets_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required |
|---|---|---|
inet |
string | ✓ |
description |
string | |
offering |
string (uri) | ✓ |
201 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
offering |
string (uri) |
offering_name |
string |
Update a resource
Updates the name, description, or end date of a resource. Requires appropriate permissions.
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
- Model Source:
OfferingAccessSubnetRequest - API Source:
marketplace_offering_access_subnets_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
inet |
string | ✓ |
description |
string | |
offering |
string (uri) | ✓ |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
offering |
string (uri) |
offering_name |
string |
Partially update a resource
Partially updates the name, description, or end date of a resource. Requires appropriate permissions.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedOfferingAccessSubnetRequest - API Source:
marketplace_offering_access_subnets_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
inet |
string | |
description |
string |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
inet |
string |
description |
string |
offering |
string (uri) |
offering_name |
string |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
marketplace_offering_access_subnets_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body