.. Document meta :orphan: .. Anchors .. _ansible_collections.theforeman.foreman.content_view_filter_module: .. Anchors: short name for ansible.builtin .. Anchors: aliases .. Title theforeman.foreman.content_view_filter -- Manage Content View Filters +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. Collection note .. note:: This plugin is part of the `theforeman.foreman collection `_ (version 2.1.2). To install it use: :code:`ansible-galaxy collection install theforeman.foreman`. To use it in a playbook, specify: :code:`theforeman.foreman.content_view_filter`. .. version_added .. versionadded:: 1.0.0 of theforeman.foreman .. contents:: :local: :depth: 1 .. Deprecated Synopsis -------- .. Description - Create and manage content View filters .. Aliases .. Requirements Requirements ------------ The below requirements are needed on the host that executes this module. - requests .. Options Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
architecture
string
package architecture
content_view
string / required
Name of the content view
date_type
string
    Choices:
  • issued
  • updated ←
Search using the 'Issued On' or 'Updated On'
Only valid on filter_type=erratum.
description
string
Description of the Content View Filter
end_date
string
erratum end date (YYYY-MM-DD)
errata_id
string
erratum id
filter_state
string
    Choices:
  • present ←
  • absent
State of the content view filter
filter_type
string / required
    Choices:
  • rpm
  • package_group
  • erratum
  • docker
Content view filter type
inclusion
boolean
    Choices:
  • no ←
  • yes
Create an include filter
max_version
string
package maximum version
min_version
string
package minimum version
name
string / required
Name of the Content View Filter
organization
string / required
Organization that the entity is in
original_packages
boolean
    Choices:
  • no
  • yes
Include all RPMs with no errata
password
string / required
Password of the user accessing the Foreman server.
If the value is not specified in the task, the value of environment variable FOREMAN_PASSWORD will be used instead.
repositories
list / elements=dictionary
Default:
[]
List of repositories that include name and product
An empty Array means all current and future repositories
rule_name
string
Content view filter rule name or package name
If omitted, the value of name will be used if necessary

aliases: package_name, package_group, tag
rule_state
string
    Choices:
  • present ←
  • absent
State of the content view filter rule
server_url
string / required
URL of the Foreman server.
If the value is not specified in the task, the value of environment variable FOREMAN_SERVER_URL will be used instead.
start_date
string
erratum start date (YYYY-MM-DD)
types
list / elements=string
Default:
["bugfix", "enhancement", "security"]
erratum types (enhancement, bugfix, security)
username
string / required
Username accessing the Foreman server.
If the value is not specified in the task, the value of environment variable FOREMAN_USERNAME will be used instead.
validate_certs
boolean
    Choices:
  • no
  • yes ←
Whether or not to verify the TLS certificates of the Foreman server.
If the value is not specified in the task, the value of environment variable FOREMAN_VALIDATE_CERTS will be used instead.
version
string
package version

.. Notes .. Seealso .. Examples Examples -------- .. code-block:: yaml+jinja - name: Exclude csh theforeman.foreman.content_view_filter: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "package filter 1" organization: "Default Organization" content_view: Web Servers filter_type: "rpm" package_name: tcsh - name: Include newer csh versions theforeman.foreman.content_view_filter: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "package filter 1" organization: "Default Organization" content_view: Web Servers filter_type: "rpm" package_name: tcsh min_version: 6.20.00 inclusion: True .. Facts .. Return values Return Values ------------- Common return values are documented :ref:`here `, the following are the fields unique to this module: .. raw:: html
Key Returned Description
entity
dictionary
success
Final state of the affected entities grouped by their type.

 
content_view_filters
list / elements=dictionary
success
List of content view filters.



.. Status (Presently only deprecated) .. Authors Authors ~~~~~~~ - Sean O'Keeffe (@sean797) .. Parsing errors