Sha256: e34d00a56df5edf6924eb6a135a73de38b8be23bbcd2ea06e73f3b2a4e12b244
Contents?: true
Size: 1.83 KB
Versions: 75
Compression:
Stored size: 1.83 KB
Contents
# AutosdeOpenapiClient::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 'autosde_openapi_client' # setup authorization AutosdeOpenapiClient.configure do |config| # Configure Bearer authorization: bearerAuth config.access_token = 'YOUR_BEARER_TOKEN' end api_instance = AutosdeOpenapiClient::RefreshSystemApi.new refresh_system = AutosdeOpenapiClient::RefreshSystem.new # RefreshSystem | begin result = api_instance.refresh_system_post(refresh_system) p result rescue AutosdeOpenapiClient::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 AutosdeOpenapiClient::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
75 entries across 75 versions & 1 rubygems