Sha256: 43a7f2b65191839fc4353ae73898bf447e8404b08266a63662495c39383ce444
Contents?: true
Size: 1.76 KB
Versions: 3
Compression:
Stored size: 1.76 KB
Contents
# EilamTest::RefreshSystemApi All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine* | Method | HTTP request | Description | | ------ | ------------ | ----------- | | [**refresh_system_post**](RefreshSystemApi.md#refresh_system_post) | **POST** /refresh-system | | ## refresh_system_post > <RefreshSystem> refresh_system_post(refresh_system) ### Examples ```ruby require 'time' require 'eilam_test' # setup authorization EilamTest.configure do |config| # Configure Bearer authorization: bearerAuth config.access_token = 'YOUR_BEARER_TOKEN' end api_instance = EilamTest::RefreshSystemApi.new refresh_system = EilamTest::RefreshSystem.new # RefreshSystem | begin result = api_instance.refresh_system_post(refresh_system) p result rescue EilamTest::ApiError => e puts "Error when calling RefreshSystemApi->refresh_system_post: #{e}" end ``` #### Using the refresh_system_post_with_http_info variant This returns an Array which contains the response data, status code and headers. > <Array(<RefreshSystem>, Integer, Hash)> refresh_system_post_with_http_info(refresh_system) ```ruby begin data, status_code, headers = api_instance.refresh_system_post_with_http_info(refresh_system) p status_code # => 2xx p headers # => { ... } p data # => <RefreshSystem> rescue EilamTest::ApiError => e puts "Error when calling RefreshSystemApi->refresh_system_post_with_http_info: #{e}" end ``` ### Parameters | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **refresh_system** | [**RefreshSystem**](RefreshSystem.md) | | | ### Return type [**RefreshSystem**](RefreshSystem.md) ### Authorization [bearerAuth](../README.md#bearerAuth) ### HTTP request headers - **Content-Type**: application/json - **Accept**: */*
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
eilam_test-11.1 | docs/RefreshSystemApi.md |
eilam_test-10.5 | docs/RefreshSystemApi.md |
eilam_test-10.2 | docs/RefreshSystemApi.md |