import 'package:halo_client/api.dart';
All URIs are relative to http://localhost:8091
Method | HTTP request | Description |
---|---|---|
createReverseProxy | POST /apis/plugin.halo.run/v1alpha1/reverseproxies | |
deleteReverseProxy | DELETE /apis/plugin.halo.run/v1alpha1/reverseproxies/{name} | |
getReverseProxy | GET /apis/plugin.halo.run/v1alpha1/reverseproxies/{name} | |
listReverseProxy | GET /apis/plugin.halo.run/v1alpha1/reverseproxies | |
patchReverseProxy | PATCH /apis/plugin.halo.run/v1alpha1/reverseproxies/{name} | |
updateReverseProxy | PUT /apis/plugin.halo.run/v1alpha1/reverseproxies/{name} |
ReverseProxy createReverseProxy(reverseProxy)
Create ReverseProxy
import 'package:halo_client/api.dart';
// TODO Configure HTTP basic authorization: basicAuth
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').password = 'YOUR_PASSWORD';
final api = HaloClient().getReverseProxyV1alpha1Api();
final ReverseProxy reverseProxy = ; // ReverseProxy | Fresh reverseproxy
try {
final response = api.createReverseProxy(reverseProxy);
print(response);
} catch on DioException (e) {
print('Exception when calling ReverseProxyV1alpha1Api->createReverseProxy: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
reverseProxy | ReverseProxy | Fresh reverseproxy | [optional] |
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deleteReverseProxy(name)
Delete ReverseProxy
import 'package:halo_client/api.dart';
// TODO Configure HTTP basic authorization: basicAuth
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').password = 'YOUR_PASSWORD';
final api = HaloClient().getReverseProxyV1alpha1Api();
final String name = name_example; // String | Name of reverseproxy
try {
api.deleteReverseProxy(name);
} catch on DioException (e) {
print('Exception when calling ReverseProxyV1alpha1Api->deleteReverseProxy: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
name | String | Name of reverseproxy |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ReverseProxy getReverseProxy(name)
Get ReverseProxy
import 'package:halo_client/api.dart';
// TODO Configure HTTP basic authorization: basicAuth
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').password = 'YOUR_PASSWORD';
final api = HaloClient().getReverseProxyV1alpha1Api();
final String name = name_example; // String | Name of reverseproxy
try {
final response = api.getReverseProxy(name);
print(response);
} catch on DioException (e) {
print('Exception when calling ReverseProxyV1alpha1Api->getReverseProxy: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
name | String | Name of reverseproxy |
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ReverseProxyList listReverseProxy(page, size, labelSelector, fieldSelector, sort)
List ReverseProxy
import 'package:halo_client/api.dart';
// TODO Configure HTTP basic authorization: basicAuth
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').password = 'YOUR_PASSWORD';
final api = HaloClient().getReverseProxyV1alpha1Api();
final int page = 56; // int | Page number. Default is 0.
final int size = 56; // int | Size number. Default is 0.
final BuiltList<String> labelSelector = ; // BuiltList<String> | Label selector. e.g.: hidden!=true
final BuiltList<String> fieldSelector = ; // BuiltList<String> | Field selector. e.g.: metadata.name==halo
final BuiltList<String> sort = ; // BuiltList<String> | Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
try {
final response = api.listReverseProxy(page, size, labelSelector, fieldSelector, sort);
print(response);
} catch on DioException (e) {
print('Exception when calling ReverseProxyV1alpha1Api->listReverseProxy: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
page | int | Page number. Default is 0. | [optional] |
size | int | Size number. Default is 0. | [optional] |
labelSelector | BuiltList<String> | Label selector. e.g.: hidden!=true | [optional] |
fieldSelector | BuiltList<String> | Field selector. e.g.: metadata.name==halo | [optional] |
sort | BuiltList<String> | Sorting criteria in the format: property,(asc | desc). Default sort order is ascending. Multiple sort criteria are supported. |
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ReverseProxy patchReverseProxy(name, jsonPatchInner)
Patch ReverseProxy
import 'package:halo_client/api.dart';
// TODO Configure HTTP basic authorization: basicAuth
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').password = 'YOUR_PASSWORD';
final api = HaloClient().getReverseProxyV1alpha1Api();
final String name = name_example; // String | Name of reverseproxy
final BuiltSet<JsonPatchInner> jsonPatchInner = ; // BuiltSet<JsonPatchInner> |
try {
final response = api.patchReverseProxy(name, jsonPatchInner);
print(response);
} catch on DioException (e) {
print('Exception when calling ReverseProxyV1alpha1Api->patchReverseProxy: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
name | String | Name of reverseproxy | |
jsonPatchInner | BuiltSet<JsonPatchInner> | [optional] |
- Content-Type: application/json-patch+json
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ReverseProxy updateReverseProxy(name, reverseProxy)
Update ReverseProxy
import 'package:halo_client/api.dart';
// TODO Configure HTTP basic authorization: basicAuth
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').password = 'YOUR_PASSWORD';
final api = HaloClient().getReverseProxyV1alpha1Api();
final String name = name_example; // String | Name of reverseproxy
final ReverseProxy reverseProxy = ; // ReverseProxy | Updated reverseproxy
try {
final response = api.updateReverseProxy(name, reverseProxy);
print(response);
} catch on DioException (e) {
print('Exception when calling ReverseProxyV1alpha1Api->updateReverseProxy: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
name | String | Name of reverseproxy | |
reverseProxy | ReverseProxy | Updated reverseproxy | [optional] |
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]