All URIs are relative to http://localhost, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
environmentGroupRestAttachenvPost() | POST /environment/group/rest/attachenv | |
environmentGroupRestCreategroupPost() | POST /environment/group/rest/creategroup | |
environmentGroupRestDetachenvPost() | POST /environment/group/rest/detachenv | |
environmentGroupRestEditgroupPost() | POST /environment/group/rest/editgroup | |
environmentGroupRestGetgroupsPost() | POST /environment/group/rest/getgroups | |
environmentGroupRestRemovegroupPost() | POST /environment/group/rest/removegroup | |
environmentGroupRestSetenvPost() | POST /environment/group/rest/setenv | |
environmentGroupRestSetisolationenabledPost() | POST /environment/group/rest/setisolationenabled |
environmentGroupRestAttachenvPost($envGroup, $envName, $targetAppid, $ownerUid): \OpenAPI\Client\Model\ComHivextApiResponse
Attach env to group
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\GroupServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$envGroup = 'envGroup_example'; // string
$envName = 'envName_example'; // string
$targetAppid = 'targetAppid_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->environmentGroupRestAttachenvPost($envGroup, $envName, $targetAppid, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GroupServiceApi->environmentGroupRestAttachenvPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
envGroup | string | ||
envName | string | [optional] | |
targetAppid | string | [optional] | |
ownerUid | int | [optional] |
\OpenAPI\Client\Model\ComHivextApiResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentGroupRestCreategroupPost($data, $envName, $envGroup, $ownerUid): \OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
Create group
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\GroupServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$data = new \OpenAPI\Client\Model\EnvironmentGroupRestEditgroupPostRequestData(); // \OpenAPI\Client\Model\EnvironmentGroupRestEditgroupPostRequestData
$envName = 'envName_example'; // string
$envGroup = 'envGroup_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->environmentGroupRestCreategroupPost($data, $envName, $envGroup, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GroupServiceApi->environmentGroupRestCreategroupPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
data | \OpenAPI\Client\Model\EnvironmentGroupRestEditgroupPostRequestData | [optional] | |
envName | string | [optional] | |
envGroup | string | [optional] | |
ownerUid | int | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentGroupRestDetachenvPost($envGroup, $envName, $targetAppid, $ownerUid): \OpenAPI\Client\Model\ComHivextApiResponse
Detach env from group
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\GroupServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$envGroup = 'envGroup_example'; // string
$envName = 'envName_example'; // string
$targetAppid = 'targetAppid_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->environmentGroupRestDetachenvPost($envGroup, $envName, $targetAppid, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GroupServiceApi->environmentGroupRestDetachenvPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
envGroup | string | ||
envName | string | [optional] | |
targetAppid | string | [optional] | |
ownerUid | int | [optional] |
\OpenAPI\Client\Model\ComHivextApiResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentGroupRestEditgroupPost($srcGroupName, $data, $envName, $dstGroupName, $ownerUid): \OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
Edit groups
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\GroupServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$srcGroupName = 'srcGroupName_example'; // string
$data = new \OpenAPI\Client\Model\EnvironmentGroupRestEditgroupPostRequestData(); // \OpenAPI\Client\Model\EnvironmentGroupRestEditgroupPostRequestData
$envName = 'envName_example'; // string
$dstGroupName = 'dstGroupName_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->environmentGroupRestEditgroupPost($srcGroupName, $data, $envName, $dstGroupName, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GroupServiceApi->environmentGroupRestEditgroupPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
srcGroupName | string | ||
data | \OpenAPI\Client\Model\EnvironmentGroupRestEditgroupPostRequestData | [optional] | |
envName | string | [optional] | |
dstGroupName | string | [optional] | |
ownerUid | int | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentGroupRestGetgroupsPost($envName, $targetAppid, $ownerUid): \OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
Get group list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\GroupServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$envName = 'envName_example'; // string
$targetAppid = 'targetAppid_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->environmentGroupRestGetgroupsPost($envName, $targetAppid, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GroupServiceApi->environmentGroupRestGetgroupsPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
envName | string | [optional] | |
targetAppid | string | [optional] | |
ownerUid | int | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentGroupRestRemovegroupPost($envGroup, $envName, $ownerUid): \OpenAPI\Client\Model\ComHivextApiResponse
Remove groups
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\GroupServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$envGroup = 'envGroup_example'; // string
$envName = 'envName_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->environmentGroupRestRemovegroupPost($envGroup, $envName, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GroupServiceApi->environmentGroupRestRemovegroupPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
envGroup | string | ||
envName | string | [optional] | |
ownerUid | int | [optional] |
\OpenAPI\Client\Model\ComHivextApiResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentGroupRestSetenvPost($envGroup, $envName, $targetAppid): \OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
Set env to group
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\GroupServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$envGroup = 'envGroup_example'; // string
$envName = 'envName_example'; // string
$targetAppid = 'targetAppid_example'; // string
try {
$result = $apiInstance->environmentGroupRestSetenvPost($envGroup, $envName, $targetAppid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GroupServiceApi->environmentGroupRestSetenvPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
envGroup | string | ||
envName | string | [optional] | |
targetAppid | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentGroupRestSetisolationenabledPost($groupName, $enabled, $envName, $ownerUid): \OpenAPI\Client\Model\ComHivextApiResponse
Enabled or disable isolation for specified environment group
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\GroupServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$groupName = 'groupName_example'; // string
$enabled = True; // bool
$envName = 'envName_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->environmentGroupRestSetisolationenabledPost($groupName, $enabled, $envName, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GroupServiceApi->environmentGroupRestSetisolationenabledPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
groupName | string | ||
enabled | bool | ||
envName | string | [optional] | |
ownerUid | int | [optional] |
\OpenAPI\Client\Model\ComHivextApiResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]