community.vmware.vmware_content_library_manager module – Create, update and delete VMware content library
Note
This module is part of the community.vmware collection (version 5.9.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.vmware.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.vmware.vmware_content_library_manager.
DEPRECATED
- Removed in:
- version 7.0.0 
- Why:
- This module has been moved to the new vmware.vmware collection 
- Alternative:
- Use vmware.vmware.local_content_library and vmware.vmware.subscribed_content_library instead. 
Synopsis
- Module to manage VMware content Library 
- Content Library feature is introduced in vSphere 6.0 version, so this module is not supported in the earlier versions of vSphere. 
Requirements
The below requirements are needed on the host that executes this module.
- vSphere Automation SDK 
Parameters
| Parameter | Comments | 
|---|---|
| Name of the datastore on which backing content library is created. This is required if  This parameter is ignored, when  Currently only datastore backing creation is supported. | |
| The hostname or IP address of the vSphere vCenter server. If the value is not specified in the task, the value of environment variable  | |
| The content library description. This is required only if  This parameter is ignored, when  Process of updating content library only allows description change. | |
| The name of VMware content library to manage. | |
| The content library type. This is required only if  This parameter is ignored, when  Choices: 
 | |
| The password of the vSphere vCenter server. If the value is not specified in the task, the value of environment variable  | |
| The port number of the vSphere vCenter. If the value is not specified in the task, the value of environment variable  Default:  | |
| The connection to protocol. Choices: 
 | |
| Address of a proxy that will receive all HTTPS requests and relay them. The format is a hostname or a IP. If the value is not specified in the task, the value of environment variable  | |
| Port of the HTTP proxy that will receive all HTTPS requests and relay them. If the value is not specified in the task, the value of environment variable  | |
| The SHA1 SSL thumbprint of the subscribed content library to subscribe to. This is required if  This parameter is ignored, when  The information can be extracted using openssl using the following example:  Default:  | |
| The state of content library. If set to  If set to  If set to  If set to  Choices: 
 | |
| The url of the content library to subscribe to. This is required if  This parameter is ignored, when  Default:  | |
| Whether to download all content on demand. If set to  If set to  This is required if  This parameter is ignored, when  Choices: 
 | |
| The username of the vSphere vCenter server. If the value is not specified in the task, the value of environment variable  | |
| Allows connection when SSL certificates are not valid. Set to  If the value is not specified in the task, the value of environment variable  Choices: 
 | 
Notes
Note
- All modules requires API write access and hence is not supported on a free ESXi license. 
- All variables and VMware object names are case sensitive. 
Examples
- name: Create Local Content Library
  community.vmware.vmware_content_library_manager:
    hostname: '{{ vcenter_hostname }}'
    username: '{{ vcenter_username }}'
    password: '{{ vcenter_password }}'
    library_name: test-content-lib
    library_description: 'Library with Datastore Backing'
    library_type: local
    datastore_name: datastore
    state: present
  delegate_to: localhost
- name: Create Subscribed Content Library
  community.vmware.vmware_content_library_manager:
    hostname: '{{ vcenter_hostname }}'
    username: '{{ vcenter_username }}'
    password: '{{ vcenter_password }}'
    library_name: test-content-lib
    library_description: 'Subscribed Library with Datastore Backing'
    library_type: subscribed
    datastore_name: datastore
    subscription_url: 'https://library.url'
    ssl_thumbprint: 'aa:bb:cc:dd:ee:ff:gg:hh:ii:jj:kk:ll:mm:nn:oo:pp:qq:rr:ss:tt'
    update_on_demand: true
    state: present
  delegate_to: localhost
- name: Update Content Library
  community.vmware.vmware_content_library_manager:
    hostname: '{{ vcenter_hostname }}'
    username: '{{ vcenter_username }}'
    password: '{{ vcenter_password }}'
    library_name: test-content-lib
    library_description: 'Library with Datastore Backing'
    state: present
  delegate_to: localhost
- name: Delete Content Library
  community.vmware.vmware_content_library_manager:
    hostname: '{{ vcenter_hostname }}'
    username: '{{ vcenter_username }}'
    password: '{{ vcenter_password }}'
    library_name: test-content-lib
    state: absent
  delegate_to: localhost
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| library creation success and library_id Returned: on success Sample:  | 
Status
- This module will be removed in version 7.0.0. [deprecated] 
- For more information see DEPRECATED. 
