# PulpContainerClient::ContentManifestsApi All URIs are relative to *http://localhost:24817* Method | HTTP request | Description ------------- | ------------- | ------------- [**list**](ContentManifestsApi.md#list) | **GET** /pulp/api/v3/content/container/manifests/ | List manifests [**read**](ContentManifestsApi.md#read) | **GET** {manifest_href} | Inspect a manifest ## list > InlineResponse2001 list(opts) List manifests ViewSet for Manifest. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: Basic config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::ContentManifestsApi.new opts = { digest: 'digest_example', # String | Filter results where digest matches value digest__in: 'digest__in_example', # String | Filter results where digest is in a comma-separated list of values repository_version: 'repository_version_example', # String | Repository Version referenced by HREF repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF media_type: 'media_type_example', # String | limit: 56, # Integer | Number of results to return per page. offset: 56, # Integer | The initial index from which to return the results. fields: 'fields_example', # String | A list of fields to include in the response. exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response. } begin #List manifests result = api_instance.list(opts) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling ContentManifestsApi->list: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **digest** | **String**| Filter results where digest matches value | [optional] **digest__in** | **String**| Filter results where digest is in a comma-separated list of values | [optional] **repository_version** | **String**| Repository Version referenced by HREF | [optional] **repository_version_added** | **String**| Repository Version referenced by HREF | [optional] **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional] **media_type** | **String**| | [optional] **limit** | **Integer**| Number of results to return per page. | [optional] **offset** | **Integer**| The initial index from which to return the results. | [optional] **fields** | **String**| A list of fields to include in the response. | [optional] **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional] ### Return type [**InlineResponse2001**](InlineResponse2001.md) ### Authorization [Basic](../README.md#Basic) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## read > ContainerManifest read(manifest_href, opts) Inspect a manifest ViewSet for Manifest. ### Example ```ruby # load the gem require 'pulp_container_client' # setup authorization PulpContainerClient.configure do |config| # Configure HTTP basic authorization: Basic config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::ContentManifestsApi.new manifest_href = 'manifest_href_example' # String | URI of Manifest. e.g.: /pulp/api/v3/content/container/manifests/1/ opts = { fields: 'fields_example', # String | A list of fields to include in the response. exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response. } begin #Inspect a manifest result = api_instance.read(manifest_href, opts) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling ContentManifestsApi->read: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **manifest_href** | **String**| URI of Manifest. e.g.: /pulp/api/v3/content/container/manifests/1/ | **fields** | **String**| A list of fields to include in the response. | [optional] **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional] ### Return type [**ContainerManifest**](ContainerManifest.md) ### Authorization [Basic](../README.md#Basic) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json