Skip to content

Latest commit

 

History

History
137 lines (93 loc) · 4.65 KB

ObjectSubnetAPI.md

File metadata and controls

137 lines (93 loc) · 4.65 KB

ObjectSubnetAPI

All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest

Method HTTP request Description
ObjectSubnetAPI_subnetCreateObjectV1 POST /1/object/subnet Create a new Subnet
ObjectSubnetAPI_subnetDeleteObjectV1 DELETE /1/object/subnet/{pkiSubnetID} Delete an existing Subnet
ObjectSubnetAPI_subnetEditObjectV1 PUT /1/object/subnet/{pkiSubnetID} Edit an existing Subnet
ObjectSubnetAPI_subnetGetObjectV2 GET /2/object/subnet/{pkiSubnetID} Retrieve an existing Subnet

ObjectSubnetAPI_subnetCreateObjectV1

// Create a new Subnet
//
// The endpoint allows to create one or many elements at once.
//
subnet_create_object_v1_response_t* ObjectSubnetAPI_subnetCreateObjectV1(apiClient_t *apiClient, subnet_create_object_v1_request_t *subnet_create_object_v1_request);

Parameters

Name Type Description Notes
apiClient apiClient_t * context containing the client configuration
subnet_create_object_v1_request subnet_create_object_v1_request_t *

Return type

subnet_create_object_v1_response_t *

Authorization

Authorization

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ObjectSubnetAPI_subnetDeleteObjectV1

// Delete an existing Subnet
//
// 
//
subnet_delete_object_v1_response_t* ObjectSubnetAPI_subnetDeleteObjectV1(apiClient_t *apiClient, int *pkiSubnetID);

Parameters

Name Type Description Notes
apiClient apiClient_t * context containing the client configuration
pkiSubnetID int * The unique ID of the Subnet

Return type

subnet_delete_object_v1_response_t *

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ObjectSubnetAPI_subnetEditObjectV1

// Edit an existing Subnet
//
// 
//
subnet_edit_object_v1_response_t* ObjectSubnetAPI_subnetEditObjectV1(apiClient_t *apiClient, int *pkiSubnetID, subnet_edit_object_v1_request_t *subnet_edit_object_v1_request);

Parameters

Name Type Description Notes
apiClient apiClient_t * context containing the client configuration
pkiSubnetID int * The unique ID of the Subnet
subnet_edit_object_v1_request subnet_edit_object_v1_request_t *

Return type

subnet_edit_object_v1_response_t *

Authorization

Authorization

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ObjectSubnetAPI_subnetGetObjectV2

// Retrieve an existing Subnet
//
// 
//
subnet_get_object_v2_response_t* ObjectSubnetAPI_subnetGetObjectV2(apiClient_t *apiClient, int *pkiSubnetID);

Parameters

Name Type Description Notes
apiClient apiClient_t * context containing the client configuration
pkiSubnetID int * The unique ID of the Subnet

Return type

subnet_get_object_v2_response_t *

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]