# PulpContainerClient::ContentManifestsApi All URIs are relative to *http://localhost:24817* Method | HTTP request | Description ------------- | ------------- | ------------- [**content_container_manifests_list**](ContentManifestsApi.md#content_container_manifests_list) | **GET** /pulp/api/v3/content/container/manifests/ | List manifests [**content_container_manifests_read**](ContentManifestsApi.md#content_container_manifests_read) | **GET** {container_manifest_href} | Inspect a manifest ## content_container_manifests_list > PaginatedcontainerManifestResponseList content_container_manifests_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: basicAuth 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'], # Array | Filter results where digest is in a comma-separated list of values limit: 56, # Integer | Number of results to return per page. media_type: ['media_type_example'], # Array | offset: 56, # Integer | The initial index from which to return the results. ordering: ['ordering_example'], # Array | Ordering 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 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 manifests result = api_instance.content_container_manifests_list(opts) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling ContentManifestsApi->content_container_manifests_list: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **digest** | **String**| Filter results where digest matches value | [optional] **digest__in** | [**Array<String>**](String.md)| Filter results where digest is in a comma-separated list of values | [optional] **limit** | **Integer**| Number of results to return per page. | [optional] **media_type** | [**Array<String>**](String.md)| | [optional] **offset** | **Integer**| The initial index from which to return the results. | [optional] **ordering** | [**Array<String>**](String.md)| Ordering | [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] **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 [**PaginatedcontainerManifestResponseList**](PaginatedcontainerManifestResponseList.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## content_container_manifests_read > ContainerManifestResponse content_container_manifests_read(container_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: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpContainerClient::ContentManifestsApi.new container_manifest_href = 'container_manifest_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 manifest result = api_instance.content_container_manifests_read(container_manifest_href, opts) p result rescue PulpContainerClient::ApiError => e puts "Exception when calling ContentManifestsApi->content_container_manifests_read: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **container_manifest_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 [**ContainerManifestResponse**](ContainerManifestResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json