# PulpContainerClient::RemotesPullThroughApi All URIs are relative to *http://localhost:24817* Method | HTTP request | Description ------------- | ------------- | ------------- [**remotes_container_pull_through_add_role**](RemotesPullThroughApi.md#remotes_container_pull_through_add_role) | **POST** {container_container_pull_through_remote_href}add_role/ | Add a role [**remotes_container_pull_through_create**](RemotesPullThroughApi.md#remotes_container_pull_through_create) | **POST** /pulp/api/v3/remotes/container/pull-through/ | Create a container pull through remote [**remotes_container_pull_through_delete**](RemotesPullThroughApi.md#remotes_container_pull_through_delete) | **DELETE** {container_container_pull_through_remote_href} | Delete a container pull through remote [**remotes_container_pull_through_list**](RemotesPullThroughApi.md#remotes_container_pull_through_list) | **GET** /pulp/api/v3/remotes/container/pull-through/ | List container pull through remotes [**remotes_container_pull_through_list_roles**](RemotesPullThroughApi.md#remotes_container_pull_through_list_roles) | **GET** {container_container_pull_through_remote_href}list_roles/ | List roles [**remotes_container_pull_through_my_permissions**](RemotesPullThroughApi.md#remotes_container_pull_through_my_permissions) | **GET** {container_container_pull_through_remote_href}my_permissions/ | List user permissions [**remotes_container_pull_through_partial_update**](RemotesPullThroughApi.md#remotes_container_pull_through_partial_update) | **PATCH** {container_container_pull_through_remote_href} | Update a container pull through remote [**remotes_container_pull_through_read**](RemotesPullThroughApi.md#remotes_container_pull_through_read) | **GET** {container_container_pull_through_remote_href} | Inspect a container pull through remote [**remotes_container_pull_through_remove_role**](RemotesPullThroughApi.md#remotes_container_pull_through_remove_role) | **POST** {container_container_pull_through_remote_href}remove_role/ | Remove a role [**remotes_container_pull_through_set_label**](RemotesPullThroughApi.md#remotes_container_pull_through_set_label) | **POST** {container_container_pull_through_remote_href}set_label/ | Set a label [**remotes_container_pull_through_unset_label**](RemotesPullThroughApi.md#remotes_container_pull_through_unset_label) | **POST** {container_container_pull_through_remote_href}unset_label/ | Unset a label [**remotes_container_pull_through_update**](RemotesPullThroughApi.md#remotes_container_pull_through_update) | **PUT** {container_container_pull_through_remote_href} | Update a container pull through remote ## remotes_container_pull_through_add_role > NestedRoleResponse remotes_container_pull_through_add_role(container_container_pull_through_remote_href, nested_role) Add a role Add a role for this object to users/groups. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | nested_role = PulpContainerClient::NestedRole.new # NestedRole | begin #Add a role result = api_instance.remotes_container_pull_through_add_role(container_container_pull_through_remote_href, nested_role) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_add_role: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **nested_role** | [**NestedRole**](NestedRole.md)| | ### Return type [**NestedRoleResponse**](NestedRoleResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data - **Accept**: application/json ## remotes_container_pull_through_create > ContainerContainerPullThroughRemoteResponse remotes_container_pull_through_create(container_container_pull_through_remote) Create a container pull through remote A Container Remote referencing a remote registry used as a source for the pull-through caching. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote = PulpContainerClient::ContainerContainerPullThroughRemote.new # ContainerContainerPullThroughRemote | begin #Create a container pull through remote result = api_instance.remotes_container_pull_through_create(container_container_pull_through_remote) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_create: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote** | [**ContainerContainerPullThroughRemote**](ContainerContainerPullThroughRemote.md)| | ### Return type [**ContainerContainerPullThroughRemoteResponse**](ContainerContainerPullThroughRemoteResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data - **Accept**: application/json ## remotes_container_pull_through_delete > AsyncOperationResponse remotes_container_pull_through_delete(container_container_pull_through_remote_href) Delete a container pull through remote Trigger an asynchronous delete task ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | begin #Delete a container pull through remote result = api_instance.remotes_container_pull_through_delete(container_container_pull_through_remote_href) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_delete: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | ### Return type [**AsyncOperationResponse**](AsyncOperationResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## remotes_container_pull_through_list > PaginatedcontainerContainerPullThroughRemoteResponseList remotes_container_pull_through_list(opts) List container pull through remotes A Container Remote referencing a remote registry used as a source for the pull-through caching. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new opts = { limit: 56, # Integer | Number of results to return per page. name: 'name_example', # String | Filter results where name matches value name__contains: 'name__contains_example', # String | Filter results where name contains value name__icontains: 'name__icontains_example', # String | Filter results where name contains value name__iexact: 'name__iexact_example', # String | Filter results where name matches value name__in: ['name__in_example'], # Array | Filter results where name is in a comma-separated list of values name__iregex: 'name__iregex_example', # String | Filter results where name matches regex value name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value name__regex: 'name__regex_example', # String | Filter results where name matches regex value name__startswith: 'name__startswith_example', # String | Filter results where name starts with value offset: 56, # Integer | The initial index from which to return the results. ordering: ['ordering_example'], # Array | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending) pulp_href__in: ['pulp_href__in_example'], # Array | Multiple values may be separated by commas. pulp_id__in: ['pulp_id__in_example'], # Array | Multiple values may be separated by commas. pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string pulp_last_updated: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated matches value pulp_last_updated__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than value pulp_last_updated__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than or equal to value pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value pulp_last_updated__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than or equal to value pulp_last_updated__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array | Filter results where pulp_last_updated is between two comma separated values q: 'q_example', # String | fields: ['fields_example'], # Array | A list of fields to include in the response. exclude_fields: ['exclude_fields_example'] # Array | A list of fields to exclude from the response. } begin #List container pull through remotes result = api_instance.remotes_container_pull_through_list(opts) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_list: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **limit** | **Integer**| Number of results to return per page. | [optional] **name** | **String**| Filter results where name matches value | [optional] **name__contains** | **String**| Filter results where name contains value | [optional] **name__icontains** | **String**| Filter results where name contains value | [optional] **name__iexact** | **String**| Filter results where name matches value | [optional] **name__in** | [**Array<String>**](String.md)| Filter results where name is in a comma-separated list of values | [optional] **name__iregex** | **String**| Filter results where name matches regex value | [optional] **name__istartswith** | **String**| Filter results where name starts with value | [optional] **name__regex** | **String**| Filter results where name matches regex value | [optional] **name__startswith** | **String**| Filter results where name starts with value | [optional] **offset** | **Integer**| The initial index from which to return the results. | [optional] **ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional] **pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional] **pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional] **pulp_label_select** | **String**| Filter labels by search string | [optional] **pulp_last_updated** | **DateTime**| Filter results where pulp_last_updated matches value | [optional] **pulp_last_updated__gt** | **DateTime**| Filter results where pulp_last_updated is greater than value | [optional] **pulp_last_updated__gte** | **DateTime**| Filter results where pulp_last_updated is greater than or equal to value | [optional] **pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional] **pulp_last_updated__lte** | **DateTime**| Filter results where pulp_last_updated is less than or equal to value | [optional] **pulp_last_updated__range** | [**Array<DateTime>**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional] **q** | **String**| | [optional] **fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional] **exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional] ### Return type [**PaginatedcontainerContainerPullThroughRemoteResponseList**](PaginatedcontainerContainerPullThroughRemoteResponseList.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## remotes_container_pull_through_list_roles > ObjectRolesResponse remotes_container_pull_through_list_roles(container_container_pull_through_remote_href, opts) List roles List roles assigned to this object. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | opts = { fields: ['fields_example'], # Array | A list of fields to include in the response. exclude_fields: ['exclude_fields_example'] # Array | A list of fields to exclude from the response. } begin #List roles result = api_instance.remotes_container_pull_through_list_roles(container_container_pull_through_remote_href, opts) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_list_roles: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional] **exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional] ### Return type [**ObjectRolesResponse**](ObjectRolesResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## remotes_container_pull_through_my_permissions > MyPermissionsResponse remotes_container_pull_through_my_permissions(container_container_pull_through_remote_href, opts) List user permissions List permissions available to the current user on this object. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | opts = { fields: ['fields_example'], # Array | A list of fields to include in the response. exclude_fields: ['exclude_fields_example'] # Array | A list of fields to exclude from the response. } begin #List user permissions result = api_instance.remotes_container_pull_through_my_permissions(container_container_pull_through_remote_href, opts) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_my_permissions: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional] **exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional] ### Return type [**MyPermissionsResponse**](MyPermissionsResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## remotes_container_pull_through_partial_update > AsyncOperationResponse remotes_container_pull_through_partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote) Update a container pull through remote Trigger an asynchronous partial update task ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | patchedcontainer_container_pull_through_remote = PulpContainerClient::PatchedcontainerContainerPullThroughRemote.new # PatchedcontainerContainerPullThroughRemote | begin #Update a container pull through remote result = api_instance.remotes_container_pull_through_partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_partial_update: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **patchedcontainer_container_pull_through_remote** | [**PatchedcontainerContainerPullThroughRemote**](PatchedcontainerContainerPullThroughRemote.md)| | ### Return type [**AsyncOperationResponse**](AsyncOperationResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data - **Accept**: application/json ## remotes_container_pull_through_read > ContainerContainerPullThroughRemoteResponse remotes_container_pull_through_read(container_container_pull_through_remote_href, opts) Inspect a container pull through remote A Container Remote referencing a remote registry used as a source for the pull-through caching. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | opts = { fields: ['fields_example'], # Array | A list of fields to include in the response. exclude_fields: ['exclude_fields_example'] # Array | A list of fields to exclude from the response. } begin #Inspect a container pull through remote result = api_instance.remotes_container_pull_through_read(container_container_pull_through_remote_href, opts) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_read: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional] **exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional] ### Return type [**ContainerContainerPullThroughRemoteResponse**](ContainerContainerPullThroughRemoteResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## remotes_container_pull_through_remove_role > NestedRoleResponse remotes_container_pull_through_remove_role(container_container_pull_through_remote_href, nested_role) Remove a role Remove a role for this object from users/groups. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | nested_role = PulpContainerClient::NestedRole.new # NestedRole | begin #Remove a role result = api_instance.remotes_container_pull_through_remove_role(container_container_pull_through_remote_href, nested_role) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_remove_role: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **nested_role** | [**NestedRole**](NestedRole.md)| | ### Return type [**NestedRoleResponse**](NestedRoleResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data - **Accept**: application/json ## remotes_container_pull_through_set_label > SetLabelResponse remotes_container_pull_through_set_label(container_container_pull_through_remote_href, set_label) Set a label Set a single pulp_label on the object to a specific value or null. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | set_label = PulpContainerClient::SetLabel.new # SetLabel | begin #Set a label result = api_instance.remotes_container_pull_through_set_label(container_container_pull_through_remote_href, set_label) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_set_label: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **set_label** | [**SetLabel**](SetLabel.md)| | ### Return type [**SetLabelResponse**](SetLabelResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data - **Accept**: application/json ## remotes_container_pull_through_unset_label > UnsetLabelResponse remotes_container_pull_through_unset_label(container_container_pull_through_remote_href, unset_label) Unset a label Unset a single pulp_label on the object. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | unset_label = PulpContainerClient::UnsetLabel.new # UnsetLabel | begin #Unset a label result = api_instance.remotes_container_pull_through_unset_label(container_container_pull_through_remote_href, unset_label) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_unset_label: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **unset_label** | [**UnsetLabel**](UnsetLabel.md)| | ### Return type [**UnsetLabelResponse**](UnsetLabelResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data - **Accept**: application/json ## remotes_container_pull_through_update > AsyncOperationResponse remotes_container_pull_through_update(container_container_pull_through_remote_href, container_container_pull_through_remote) Update a container pull through remote Trigger an asynchronous update task ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::RemotesPullThroughApi.new container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String | container_container_pull_through_remote = PulpContainerClient::ContainerContainerPullThroughRemote.new # ContainerContainerPullThroughRemote | begin #Update a container pull through remote result = api_instance.remotes_container_pull_through_update(container_container_pull_through_remote_href, container_container_pull_through_remote) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling RemotesPullThroughApi->remotes_container_pull_through_update: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_container_pull_through_remote_href** | **String**| | **container_container_pull_through_remote** | [**ContainerContainerPullThroughRemote**](ContainerContainerPullThroughRemote.md)| | ### Return type [**AsyncOperationResponse**](AsyncOperationResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: application/json, application/x-www-form-urlencoded, multipart/form-data - **Accept**: application/json