# EilamTest::ServiceResourceAttachmentApi All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine* | Method | HTTP request | Description | | ------ | ------------ | ----------- | | [**service_resource_attchment_get**](ServiceResourceAttachmentApi.md#service_resource_attchment_get) | **GET** /service-resource-attchment | | | [**service_resource_attchment_pk_delete**](ServiceResourceAttachmentApi.md#service_resource_attchment_pk_delete) | **DELETE** /service-resource-attchment/{pk} | | | [**service_resource_attchment_pk_get**](ServiceResourceAttachmentApi.md#service_resource_attchment_pk_get) | **GET** /service-resource-attchment/{pk} | | | [**service_resource_attchment_post**](ServiceResourceAttachmentApi.md#service_resource_attchment_post) | **POST** /service-resource-attchment | | ## service_resource_attchment_get > > service_resource_attchment_get ### 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::ServiceResourceAttachmentApi.new begin result = api_instance.service_resource_attchment_get p result rescue EilamTest::ApiError => e puts "Error when calling ServiceResourceAttachmentApi->service_resource_attchment_get: #{e}" end ``` #### Using the service_resource_attchment_get_with_http_info variant This returns an Array which contains the response data, status code and headers. > >, Integer, Hash)> service_resource_attchment_get_with_http_info ```ruby begin data, status_code, headers = api_instance.service_resource_attchment_get_with_http_info p status_code # => 2xx p headers # => { ... } p data # => > rescue EilamTest::ApiError => e puts "Error when calling ServiceResourceAttachmentApi->service_resource_attchment_get_with_http_info: #{e}" end ``` ### Parameters This endpoint does not need any parameter. ### Return type [**Array<ServiceResourceAttachment>**](ServiceResourceAttachment.md) ### Authorization [bearerAuth](../README.md#bearerAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: */* ## service_resource_attchment_pk_delete > > service_resource_attchment_pk_delete(pk) ### 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::ServiceResourceAttachmentApi.new pk = 56 # Integer | begin result = api_instance.service_resource_attchment_pk_delete(pk) p result rescue EilamTest::ApiError => e puts "Error when calling ServiceResourceAttachmentApi->service_resource_attchment_pk_delete: #{e}" end ``` #### Using the service_resource_attchment_pk_delete_with_http_info variant This returns an Array which contains the response data, status code and headers. > >, Integer, Hash)> service_resource_attchment_pk_delete_with_http_info(pk) ```ruby begin data, status_code, headers = api_instance.service_resource_attchment_pk_delete_with_http_info(pk) p status_code # => 2xx p headers # => { ... } p data # => > rescue EilamTest::ApiError => e puts "Error when calling ServiceResourceAttachmentApi->service_resource_attchment_pk_delete_with_http_info: #{e}" end ``` ### Parameters | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **pk** | **Integer** | | | ### Return type [**Array<ServiceResourceAttachment>**](ServiceResourceAttachment.md) ### Authorization [bearerAuth](../README.md#bearerAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: */* ## service_resource_attchment_pk_get > > service_resource_attchment_pk_get(pk) ### 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::ServiceResourceAttachmentApi.new pk = 56 # Integer | begin result = api_instance.service_resource_attchment_pk_get(pk) p result rescue EilamTest::ApiError => e puts "Error when calling ServiceResourceAttachmentApi->service_resource_attchment_pk_get: #{e}" end ``` #### Using the service_resource_attchment_pk_get_with_http_info variant This returns an Array which contains the response data, status code and headers. > >, Integer, Hash)> service_resource_attchment_pk_get_with_http_info(pk) ```ruby begin data, status_code, headers = api_instance.service_resource_attchment_pk_get_with_http_info(pk) p status_code # => 2xx p headers # => { ... } p data # => > rescue EilamTest::ApiError => e puts "Error when calling ServiceResourceAttachmentApi->service_resource_attchment_pk_get_with_http_info: #{e}" end ``` ### Parameters | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **pk** | **Integer** | | | ### Return type [**Array<ServiceResourceAttachment>**](ServiceResourceAttachment.md) ### Authorization [bearerAuth](../README.md#bearerAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: */* ## service_resource_attchment_post > service_resource_attchment_post(service_resource_attachment) ### 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::ServiceResourceAttachmentApi.new service_resource_attachment = EilamTest::ServiceResourceAttachment.new # ServiceResourceAttachment | begin result = api_instance.service_resource_attchment_post(service_resource_attachment) p result rescue EilamTest::ApiError => e puts "Error when calling ServiceResourceAttachmentApi->service_resource_attchment_post: #{e}" end ``` #### Using the service_resource_attchment_post_with_http_info variant This returns an Array which contains the response data, status code and headers. > , Integer, Hash)> service_resource_attchment_post_with_http_info(service_resource_attachment) ```ruby begin data, status_code, headers = api_instance.service_resource_attchment_post_with_http_info(service_resource_attachment) p status_code # => 2xx p headers # => { ... } p data # => rescue EilamTest::ApiError => e puts "Error when calling ServiceResourceAttachmentApi->service_resource_attchment_post_with_http_info: #{e}" end ``` ### Parameters | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **service_resource_attachment** | [**ServiceResourceAttachment**](ServiceResourceAttachment.md) | | | ### Return type [**ServiceResourceAttachment**](ServiceResourceAttachment.md) ### Authorization [bearerAuth](../README.md#bearerAuth) ### HTTP request headers - **Content-Type**: application/json - **Accept**: */*