-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathee-supported-modules.txt
1075 lines (1074 loc) · 204 KB
/
ee-supported-modules.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
amazon.aws.autoscaling_group Create or delete AWS AutoScaling Groups (ASGs)
amazon.aws.autoscaling_group_info Gather information about EC2 Auto Scaling Groups (ASGs) in AWS
amazon.aws.aws_az_info Gather information about availability zones in AWS
amazon.aws.aws_caller_info Get information about the user and account being used to make AWS calls
amazon.aws.backup_plan Manage AWS Backup Plans
amazon.aws.backup_plan_info Describe AWS Backup Plans
amazon.aws.backup_restore_job_info List information about backup restore jobs
amazon.aws.backup_selection Create, delete and modify AWS Backup selection
amazon.aws.backup_selection_info Describe AWS Backup Selections
amazon.aws.backup_tag Manage tags on backup plan, backup vault, recovery point
amazon.aws.backup_tag_info List tags on AWS Backup resources
amazon.aws.backup_vault Manage AWS Backup Vaults
amazon.aws.backup_vault_info Describe AWS Backup Vaults
amazon.aws.cloudformation Create or delete an AWS CloudFormation stack
amazon.aws.cloudformation_info Obtain information about an AWS CloudFormation stack
amazon.aws.cloudtrail manage CloudTrail create, delete, update
amazon.aws.cloudtrail_info Gather information about trails in AWS Cloud Trail
amazon.aws.cloudwatch_metric_alarm Create/update or delete AWS CloudWatch 'metric alarms'
amazon.aws.cloudwatch_metric_alarm_info Gather information about the alarms for the specified metric
amazon.aws.cloudwatchevent_rule Manage CloudWatch Event rules and targets
amazon.aws.cloudwatchlogs_log_group create or delete log_group in CloudWatchLogs
amazon.aws.cloudwatchlogs_log_group_info Get information about log_group in CloudWatchLogs
amazon.aws.cloudwatchlogs_log_group_metric_filter Manage CloudWatch log group metric filter
amazon.aws.ec2_ami Create or destroy an image (AMI) in EC2
amazon.aws.ec2_ami_info Gather information about ec2 AMIs
amazon.aws.ec2_eip manages EC2 elastic IP (EIP) addresses
amazon.aws.ec2_eip_info List EC2 EIP details
amazon.aws.ec2_eni Create and optionally attach an Elastic Network Interface (ENI) to an instance
amazon.aws.ec2_eni_info Gather information about EC2 ENI interfaces in AWS
amazon.aws.ec2_instance Create & manage EC2 instances
amazon.aws.ec2_instance_info Gather information about ec2 instances in AWS
amazon.aws.ec2_key Create or delete an EC2 key pair
amazon.aws.ec2_metadata_facts Gathers facts (instance metadata) about remote hosts within EC2
amazon.aws.ec2_security_group Maintain an EC2 security group
amazon.aws.ec2_security_group_info Gather information about EC2 security groups in AWS
amazon.aws.ec2_snapshot Creates a snapshot from an existing volume
amazon.aws.ec2_snapshot_info Gathers information about EC2 volume snapshots in AWS
amazon.aws.ec2_spot_instance Request, stop, reboot or cancel spot instance
amazon.aws.ec2_spot_instance_info Gather information about ec2 spot instance requests
amazon.aws.ec2_tag Create and remove tags on ec2 resources
amazon.aws.ec2_tag_info List tags on ec2 resources
amazon.aws.ec2_vol Create and attach a volume, return volume ID and device map
amazon.aws.ec2_vol_info Gather information about EC2 volumes in AWS
amazon.aws.ec2_vpc_dhcp_option Manages DHCP Options, and can ensure the DHCP options for the given VPC match what's requested
amazon.aws.ec2_vpc_dhcp_option_info Gather information about DHCP options sets in AWS
amazon.aws.ec2_vpc_endpoint Create and delete AWS VPC endpoints
amazon.aws.ec2_vpc_endpoint_info Retrieves AWS VPC endpoints details using AWS methods
amazon.aws.ec2_vpc_endpoint_service_info Retrieves AWS VPC endpoint service details
amazon.aws.ec2_vpc_igw Manage an AWS VPC Internet gateway
amazon.aws.ec2_vpc_igw_info Gather information about internet gateways in AWS
amazon.aws.ec2_vpc_nat_gateway Manage AWS VPC NAT Gateways
amazon.aws.ec2_vpc_nat_gateway_info Retrieves AWS VPC Managed Nat Gateway details using AWS methods
amazon.aws.ec2_vpc_net Configure AWS Virtual Private Clouds
amazon.aws.ec2_vpc_net_info Gather information about ec2 VPCs in AWS
amazon.aws.ec2_vpc_route_table Manage route tables for AWS Virtual Private Clouds
amazon.aws.ec2_vpc_route_table_info Gather information about ec2 VPC route tables in AWS
amazon.aws.ec2_vpc_subnet Manage subnets in AWS virtual private clouds
amazon.aws.ec2_vpc_subnet_info Gather information about ec2 VPC subnets in AWS
amazon.aws.elb_application_lb Manage an Application Load Balancer
amazon.aws.elb_application_lb_info Gather information about Application Load Balancers in AWS
amazon.aws.elb_classic_lb Creates, updates or destroys an Amazon ELB
amazon.aws.iam_policy Manage inline IAM policies for users, groups, and roles
amazon.aws.iam_policy_info Retrieve inline IAM policies for users, groups, and roles
amazon.aws.iam_user Manage AWS IAM users
amazon.aws.iam_user_info Gather IAM user(s) facts in AWS
amazon.aws.kms_key Perform various KMS key management tasks
amazon.aws.kms_key_info Gather information about AWS KMS keys
amazon.aws.lambda Manage AWS Lambda functions
amazon.aws.lambda_alias Creates, updates or deletes AWS Lambda function aliases
amazon.aws.lambda_event Creates, updates or deletes AWS Lambda function event mappings
amazon.aws.lambda_execute Execute an AWS Lambda function
amazon.aws.lambda_info Gathers AWS Lambda function details
amazon.aws.lambda_layer Creates an AWS Lambda layer or deletes an AWS Lambda layer version
amazon.aws.lambda_layer_info List lambda layer or lambda layer versions
amazon.aws.lambda_policy Creates, updates or deletes AWS Lambda policy statements
amazon.aws.rds_cluster rds_cluster module
amazon.aws.rds_cluster_info Obtain information about one or more RDS clusters
amazon.aws.rds_cluster_snapshot Manage Amazon RDS snapshots of DB clusters
amazon.aws.rds_instance Manage RDS instances
amazon.aws.rds_instance_info obtain information about one or more RDS instances
amazon.aws.rds_instance_snapshot Manage Amazon RDS instance snapshots
amazon.aws.rds_option_group Manages the creation, modification, deletion of RDS option groups
amazon.aws.rds_option_group_info rds_option_group_info module
amazon.aws.rds_param_group manage RDS parameter groups
amazon.aws.rds_snapshot_info obtain information about one or more RDS snapshots
amazon.aws.rds_subnet_group manage RDS database subnet groups
amazon.aws.route53 add or delete entries in Amazons Route 53 DNS service
amazon.aws.route53_health_check Manage health-checks in Amazons Route53 DNS service
amazon.aws.route53_info Retrieves route53 details using AWS methods
amazon.aws.route53_zone add or delete Route53 zones
amazon.aws.s3_bucket Manage S3 buckets in AWS, DigitalOcean, Ceph, Walrus, FakeS3 and StorageGRID
amazon.aws.s3_object Manage objects in S3
amazon.aws.s3_object_info Gather information about objects in S3
ansible.builtin.add_host Add a host (and alternatively a group) to the ansible-playbook in-memory inventory
ansible.builtin.apt Manages apt-packages
ansible.builtin.apt_key Add or remove an apt key
ansible.builtin.apt_repository Add and remove APT repositories
ansible.builtin.assemble Assemble configuration files from fragments
ansible.builtin.assert Asserts given expressions are true
ansible.builtin.async_status Obtain status of asynchronous task
ansible.builtin.blockinfile Insert/update/remove a text block surrounded by marker lines
ansible.builtin.command Execute commands on targets
ansible.builtin.copy Copy files to remote locations
ansible.builtin.cron Manage cron.d and crontab entries
ansible.builtin.deb822_repository Add and remove deb822 formatted repositories
ansible.builtin.debconf Configure a .deb package
ansible.builtin.debug Print statements during execution
ansible.builtin.dnf Manages packages with the `dnf' package manager
ansible.builtin.dnf5 Manages packages with the `dnf5' package manager
ansible.builtin.dpkg_selections Dpkg package selection selections
ansible.builtin.expect Executes a command and responds to prompts
ansible.builtin.fail Fail with custom message
ansible.builtin.fetch Fetch files from remote nodes
ansible.builtin.file Manage files and file properties
ansible.builtin.find Return a list of files based on specific criteria
ansible.builtin.gather_facts Gathers facts about remote hosts
ansible.builtin.get_url Downloads files from HTTP, HTTPS, or FTP to node
ansible.builtin.getent A wrapper to the unix getent utility
ansible.builtin.git Deploy software (or files) from git checkouts
ansible.builtin.group Add or remove groups
ansible.builtin.group_by Create Ansible groups based on facts
ansible.builtin.hostname Manage hostname
ansible.builtin.import_playbook Import a playbook
ansible.builtin.import_role Import a role into a play
ansible.builtin.import_tasks Import a task list
ansible.builtin.include_role Load and execute a role
ansible.builtin.include_tasks Dynamically include a task list
ansible.builtin.include_vars Load variables from files, dynamically within a task
ansible.builtin.iptables Modify iptables rules
ansible.builtin.known_hosts Add or remove a host from the `known_hosts' file
ansible.builtin.lineinfile Manage lines in text files
ansible.builtin.meta Execute Ansible 'actions'
ansible.builtin.package Generic OS package manager
ansible.builtin.package_facts Package information as facts
ansible.builtin.pause Pause playbook execution
ansible.builtin.ping Try to connect to host, verify a usable python and return `pong' on success
ansible.builtin.pip Manages Python library dependencies
ansible.builtin.raw Executes a low-down and dirty command
ansible.builtin.reboot Reboot a machine
ansible.builtin.replace Replace all instances of a particular string in a file using a back-referenced regular expression
ansible.builtin.rpm_key Adds or removes a gpg key from the rpm db
ansible.builtin.script Runs a local script on a remote node after transferring it
ansible.builtin.service Manage services
ansible.builtin.service_facts Return service state information as fact data
ansible.builtin.set_fact Set host variable(s) and fact(s)
ansible.builtin.set_stats Define and display stats for the current ansible run
ansible.builtin.setup Gathers facts about remote hosts
ansible.builtin.shell Execute shell commands on targets
ansible.builtin.slurp Slurps a file from remote nodes
ansible.builtin.stat Retrieve file or file system status
ansible.builtin.subversion Deploys a subversion repository
ansible.builtin.systemd Manage systemd units
ansible.builtin.systemd_service Manage systemd units
ansible.builtin.sysvinit Manage SysV services
ansible.builtin.tempfile Creates temporary files and directories
ansible.builtin.template Template a file out to a target host
ansible.builtin.unarchive Unpacks an archive after (optionally) copying it from the local machine
ansible.builtin.uri Interacts with webservices
ansible.builtin.user Manage user accounts
ansible.builtin.validate_argument_spec Validate role argument specs
ansible.builtin.wait_for Waits for a condition before continuing
ansible.builtin.wait_for_connection Waits until remote system is reachable/usable
ansible.builtin.yum Manages packages with the `yum' package manager
ansible.builtin.yum_repository Add or remove YUM repositories
ansible.controller.ad_hoc_command create, update, or destroy Automation Platform Controller ad hoc commands
ansible.controller.ad_hoc_command_cancel Cancel an Ad Hoc Command
ansible.controller.ad_hoc_command_wait Wait for Automation Platform Controller Ad Hoc Command to finish
ansible.controller.application create, update, or destroy Automation Platform Controller applications
ansible.controller.bulk_host_create Bulk host create in Automation Platform Controller
ansible.controller.bulk_job_launch Bulk job launch in Automation Platform Controller
ansible.controller.controller_meta Returns metadata about the collection this module lives in
ansible.controller.credential create, update, or destroy Automation Platform Controller credential
ansible.controller.credential_input_source create, update, or destroy Automation Platform Controller credential input sources
ansible.controller.credential_type Create, update, or destroy custom Automation Platform Controller credential type
ansible.controller.execution_environment create, update, or destroy Execution Environments in Automation Platform Controller
ansible.controller.export export resources from Automation Platform Controller
ansible.controller.group create, update, or destroy Automation Platform Controller group
ansible.controller.host create, update, or destroy Automation Platform Controller host
ansible.controller.import import resources into Automation Platform Controller
ansible.controller.instance create, update, or destroy Automation Platform Controller instances
ansible.controller.instance_group create, update, or destroy Automation Platform Controller instance groups
ansible.controller.inventory create, update, or destroy Automation Platform Controller inventory
ansible.controller.inventory_source create, update, or destroy Automation Platform Controller inventory source
ansible.controller.inventory_source_update Update inventory source(s)
ansible.controller.job_cancel Cancel an Automation Platform Controller Job
ansible.controller.job_launch Launch an Ansible Job
ansible.controller.job_list List Automation Platform Controller jobs
ansible.controller.job_template create, update, or destroy Automation Platform Controller job templates
ansible.controller.job_wait Wait for Automation Platform Controller job to finish
ansible.controller.label create, update, or destroy Automation Platform Controller labels
ansible.controller.license Set the license for Automation Platform Controller
ansible.controller.notification_template create, update, or destroy Automation Platform Controller notification
ansible.controller.organization create, update, or destroy Automation Platform Controller organizations
ansible.controller.project create, update, or destroy Automation Platform Controller projects
ansible.controller.project_update Update a Project in Automation Platform Controller
ansible.controller.role grant or revoke an Automation Platform Controller role
ansible.controller.schedule create, update, or destroy Automation Platform Controller schedules
ansible.controller.settings Modify Automation Platform Controller settings
ansible.controller.subscriptions Get subscription list
ansible.controller.team create, update, or destroy Automation Platform Controller team
ansible.controller.token create, update, or destroy Automation Platform Controller tokens
ansible.controller.user create, update, or destroy Automation Platform Controller users
ansible.controller.workflow_approval Approve an approval node in a workflow job
ansible.controller.workflow_job_template create, update, or destroy Automation Platform Controller workflow job templates
ansible.controller.workflow_job_template_node create, update, or destroy Automation Platform Controller workflow job template nodes
ansible.controller.workflow_launch Run a workflow in Automation Platform Controller
ansible.controller.workflow_node_wait Wait for a workflow node to finish
ansible.netcommon.cli_command Run a cli command on cli-based network devices
ansible.netcommon.cli_config Push text based configuration to network devices over network_cli
ansible.netcommon.grpc_config Fetch configuration/state data from gRPC enabled target hosts
ansible.netcommon.grpc_get Fetch configuration/state data from gRPC enabled target hosts
ansible.netcommon.net_get Copy a file from a network device to Ansible Controller
ansible.netcommon.net_ping Tests reachability using ping from a network device
ansible.netcommon.net_put Copy a file from Ansible Controller to a network device
ansible.netcommon.netconf_config netconf device configuration
ansible.netcommon.netconf_get Fetch configuration/state data from NETCONF enabled network devices
ansible.netcommon.netconf_rpc Execute operations on NETCONF enabled network devices
ansible.netcommon.network_resource Manage resource modules
ansible.netcommon.restconf_config Handles create, update, read and delete of configuration data on RESTCONF enabled devices
ansible.netcommon.restconf_get Fetch configuration/state data from RESTCONF enabled devices
ansible.netcommon.telnet Executes a low-down and dirty telnet command
ansible.posix.acl Set and retrieve file ACL information
ansible.posix.at Schedule the execution of a command or script file via the at command
ansible.posix.authorized_key Adds or removes an SSH authorized key
ansible.posix.firewalld Manage arbitrary ports/services with firewalld
ansible.posix.firewalld_info Gather information about firewalld
ansible.posix.mount Control active and configured mount points
ansible.posix.patch Apply patch files using the GNU patch tool
ansible.posix.rhel_facts Facts module to set or override RHEL specific facts
ansible.posix.rhel_rpm_ostree Ensure packages exist in a RHEL for Edge rpm-ostree based system
ansible.posix.rpm_ostree_upgrade Manage rpm-ostree upgrade transactions
ansible.posix.seboolean Toggles SELinux booleans
ansible.posix.selinux Change policy and state of SELinux
ansible.posix.synchronize A wrapper around rsync to make common tasks in your playbooks quick and easy
ansible.posix.sysctl Manage entries in sysctl.conf
ansible.scm.git_publish Publish changes from a repository available on the execution node to a distant location
ansible.scm.git_retrieve Retrieve a repository from a distant location and make it available on the execution node
ansible.snmp.get Perform an SNMP get against a remote device for one or more OIDs
ansible.snmp.set Perform an SNMP set against a remote device for one or more OIDs
ansible.snmp.walk Perform an SNMP walk against a remote device for one or more OIDs
ansible.utils.cli_parse Parse cli output or text using a variety of parsers
ansible.utils.fact_diff Find the difference between currently set facts
ansible.utils.update_fact Update currently set facts
ansible.utils.validate Validate data with provided criteria
ansible.windows.async_status Obtain status of asynchronous task
ansible.windows.setup Gathers facts about remote hosts
ansible.windows.slurp Slurps a file from remote nodes
ansible.windows.win_acl Set file/directory/registry permissions for a system user or group
ansible.windows.win_acl_inheritance Change ACL inheritance
ansible.windows.win_certificate_store Manages the certificate store
ansible.windows.win_command Executes a command on a remote Windows node
ansible.windows.win_copy Copies files to remote locations on windows hosts
ansible.windows.win_dns_client Configures DNS lookup on Windows hosts
ansible.windows.win_domain Ensures the existence of a Windows domain
ansible.windows.win_domain_controller Manage domain controller/member server state for a Windows host
ansible.windows.win_domain_membership Manage domain/workgroup membership for a Windows host
ansible.windows.win_dsc Invokes a PowerShell DSC configuration
ansible.windows.win_environment Modify environment variables on windows hosts
ansible.windows.win_feature Installs and uninstalls Windows Features on Windows Server
ansible.windows.win_file Creates, touches or removes files or directories
ansible.windows.win_find Return a list of files based on specific criteria
ansible.windows.win_get_url Downloads file from HTTP, HTTPS, or FTP to node
ansible.windows.win_group Add and remove local groups
ansible.windows.win_group_membership Manage Windows local group membership
ansible.windows.win_hostname Manages local Windows computer name
ansible.windows.win_optional_feature Manage optional Windows features
ansible.windows.win_owner Set owner
ansible.windows.win_package Installs/uninstalls an installable package
ansible.windows.win_path Manage Windows path environment variables
ansible.windows.win_ping A windows version of the classic ping module
ansible.windows.win_powershell Run PowerShell scripts
ansible.windows.win_reboot Reboot a windows machine
ansible.windows.win_reg_stat Get information about Windows registry keys
ansible.windows.win_regedit Add, change, or remove registry keys and values
ansible.windows.win_service Manage and query Windows services
ansible.windows.win_service_info Gather information about Windows services
ansible.windows.win_share Manage Windows shares
ansible.windows.win_shell Execute shell commands on target hosts
ansible.windows.win_stat Get information about Windows files
ansible.windows.win_tempfile Creates temporary files and directories
ansible.windows.win_template Template a file out to a remote server
ansible.windows.win_updates Download and install Windows updates
ansible.windows.win_uri Interacts with webservices
ansible.windows.win_user Manages local Windows user accounts
ansible.windows.win_user_right Manage Windows User Rights
ansible.windows.win_wait_for Waits for a condition before continuing
ansible.windows.win_whoami Get information about the current user and process
ansible.yang.configure Reads the input configuration in JSON format and pushes to the remote host over netconf
ansible.yang.fetch Fetch given yang model and it's dependencies
ansible.yang.generate_spec Generate JSON/XML schema and tree representation for given YANG model
ansible.yang.get Fetch the device configuration and render it in JSON format defined by RFC7951
arista.eos.eos_acl_interfaces ACL interfaces resource module
arista.eos.eos_acls ACLs resource module
arista.eos.eos_banner Manage multiline banners on Arista EOS devices
arista.eos.eos_bgp (deprecated, removed after 2023-01-29) Configure global BGP protocol settings on Arista EOS
arista.eos.eos_bgp_address_family Manages BGP address family resource module
arista.eos.eos_bgp_global Manages BGP global resource module
arista.eos.eos_command Run arbitrary commands on an Arista EOS device
arista.eos.eos_config Manage Arista EOS configuration sections
arista.eos.eos_eapi Manage and configure Arista EOS eAPI
arista.eos.eos_facts Collect facts from remote devices running Arista EOS
arista.eos.eos_hostname Manages hostname resource module
arista.eos.eos_interfaces Interfaces resource module
arista.eos.eos_l2_interfaces L2 interfaces resource module
arista.eos.eos_l3_interfaces L3 interfaces resource module
arista.eos.eos_lacp LACP resource module
arista.eos.eos_lacp_interfaces LACP interfaces resource module
arista.eos.eos_lag_interfaces LAG interfaces resource module
arista.eos.eos_lldp Manage LLDP configuration on Arista EOS network devices
arista.eos.eos_lldp_global LLDP resource module
arista.eos.eos_lldp_interfaces LLDP interfaces resource module
arista.eos.eos_logging Manage logging on network devices
arista.eos.eos_logging_global Manages logging resource module
arista.eos.eos_ntp_global Manages ntp resource module
arista.eos.eos_ospf_interfaces OSPF Interfaces Resource Module
arista.eos.eos_ospfv2 OSPFv2 resource module
arista.eos.eos_ospfv3 OSPFv3 resource module
arista.eos.eos_prefix_lists Manages Prefix lists resource module
arista.eos.eos_route_maps Manages Route Maps resource module
arista.eos.eos_snmp_server Manages snmp_server resource module
arista.eos.eos_static_routes Static routes resource module
arista.eos.eos_system Manage the system attributes on Arista EOS devices
arista.eos.eos_user Manage the collection of local users on EOS devices
arista.eos.eos_vlans VLANs resource module
arista.eos.eos_vrf Manage VRFs on Arista EOS network devices
cisco.asa.asa_acls Access-Lists resource module
cisco.asa.asa_command Run arbitrary commands on Cisco ASA devices
cisco.asa.asa_config Manage configuration sections on Cisco ASA devices
cisco.asa.asa_facts Collect facts from remote devices running Cisco ASA
cisco.asa.asa_ogs Object Group resource module
cisco.ios.ios_acl_interfaces Resource module to configure ACL interfaces
cisco.ios.ios_acls Resource module to configure ACLs
cisco.ios.ios_banner Module to configure multiline banners
cisco.ios.ios_bgp Module to configure BGP protocol settings
cisco.ios.ios_bgp_address_family Resource module to configure BGP Address family
cisco.ios.ios_bgp_global Resource module to configure BGP
cisco.ios.ios_command Module to run commands on remote devices
cisco.ios.ios_config Module to manage configuration sections
cisco.ios.ios_facts Module to collect facts from remote devices
cisco.ios.ios_hostname Resource module to configure hostname
cisco.ios.ios_interfaces Resource module to configure interfaces
cisco.ios.ios_l2_interfaces Resource module to configure L2 interfaces
cisco.ios.ios_l3_interfaces Resource module to configure L3 interfaces
cisco.ios.ios_lacp Resource module to configure LACP
cisco.ios.ios_lacp_interfaces Resource module to configure LACP interfaces
cisco.ios.ios_lag_interfaces Resource module to configure LAG interfaces
cisco.ios.ios_linkagg Module to configure link aggregation groups
cisco.ios.ios_lldp (deprecated, removed after 2024-06-01) Manage LLDP configuration on Cisco IOS network devices
cisco.ios.ios_lldp_global Resource module to configure LLDP
cisco.ios.ios_lldp_interfaces Resource module to configure LLDP interfaces
cisco.ios.ios_logging (deprecated, removed after 2023-06-01) Manage logging on network devices
cisco.ios.ios_logging_global Resource module to configure logging
cisco.ios.ios_ntp (deprecated, removed after 2024-01-01) Manages core NTP configuration
cisco.ios.ios_ntp_global Resource module to configure NTP
cisco.ios.ios_ospf_interfaces Resource module to configure OSPF interfaces
cisco.ios.ios_ospfv2 Resource module to configure OSPFv2
cisco.ios.ios_ospfv3 Resource module to configure OSPFv3
cisco.ios.ios_ping Tests reachability using ping from IOS switch
cisco.ios.ios_prefix_lists Resource module to configure prefix lists
cisco.ios.ios_route_maps Resource module to configure route maps
cisco.ios.ios_service Resource module to configure service
cisco.ios.ios_snmp_server Resource module to configure snmp server
cisco.ios.ios_static_routes Resource module to configure static routes
cisco.ios.ios_system Module to manage the system attributes
cisco.ios.ios_user Module to manage the aggregates of local users
cisco.ios.ios_vlans Resource module to configure VLANs
cisco.ios.ios_vrf Module to configure VRF definitions
cisco.iosxr.iosxr_acl_interfaces Resource module to configure ACL interfaces
cisco.iosxr.iosxr_acls Resource module to configure ACLs
cisco.iosxr.iosxr_banner Module to configure multiline banners
cisco.iosxr.iosxr_bgp Module to configure BGP protocol settings
cisco.iosxr.iosxr_bgp_address_family Resource module to configure BGP Address family
cisco.iosxr.iosxr_bgp_global Resource module to configure BGP
cisco.iosxr.iosxr_bgp_neighbor_address_family Resource module to configure BGP Neighbor Address family
cisco.iosxr.iosxr_command Module to run commands on remote devices
cisco.iosxr.iosxr_config Module to manage configuration sections
cisco.iosxr.iosxr_facts Module to collect facts from remote devices
cisco.iosxr.iosxr_hostname Resource module to configure hostname
cisco.iosxr.iosxr_interfaces Resource module to configure interfaces
cisco.iosxr.iosxr_l2_interfaces Resource Module to configure L2 interfaces
cisco.iosxr.iosxr_l3_interfaces Resource module to configure L3 interfaces
cisco.iosxr.iosxr_lacp Resource module to configure LACP
cisco.iosxr.iosxr_lacp_interfaces Resource module to configure LACP interfaces
cisco.iosxr.iosxr_lag_interfaces Resource module to configure LAG interfaces
cisco.iosxr.iosxr_lldp_global Resource module to configure LLDP
cisco.iosxr.iosxr_lldp_interfaces Resource module to configure LLDP interfaces
cisco.iosxr.iosxr_logging (deprecated, removed after 2023-08-01) Configuration management of system logging services on network devices
cisco.iosxr.iosxr_logging_global Resource module to configure logging
cisco.iosxr.iosxr_netconf Configures NetConf sub-system service on Cisco IOS-XR devices
cisco.iosxr.iosxr_ntp_global Resource module to configure NTP
cisco.iosxr.iosxr_ospf_interfaces Resource module to configure OSPF interfaces
cisco.iosxr.iosxr_ospfv2 Resource module to configure OSPFv2
cisco.iosxr.iosxr_ospfv3 Resource module to configure OSPFv3
cisco.iosxr.iosxr_ping Tests reachability using ping from IOSXR switch
cisco.iosxr.iosxr_prefix_lists Resource module to configure prefix lists
cisco.iosxr.iosxr_snmp_server Resource module to configure snmp server
cisco.iosxr.iosxr_static_routes Resource module to configure static routes
cisco.iosxr.iosxr_system Module to manage the system attributes
cisco.iosxr.iosxr_user Module to manage the aggregates of local users
cisco.nxos.nxos_aaa_server Manages AAA server global configuration
cisco.nxos.nxos_aaa_server_host Manages AAA server host-specific configuration
cisco.nxos.nxos_acl_interfaces ACL interfaces resource module
cisco.nxos.nxos_acls ACLs resource module
cisco.nxos.nxos_banner Manage multiline banners on Cisco NXOS devices
cisco.nxos.nxos_bfd_global Bidirectional Forwarding Detection (BFD) global-level configuration
cisco.nxos.nxos_bfd_interfaces BFD interfaces resource module
cisco.nxos.nxos_bgp (deprecated, removed after 2023-01-27) Manages BGP configuration
cisco.nxos.nxos_bgp_address_family BGP Address Family resource module
cisco.nxos.nxos_bgp_af (deprecated, removed after 2023-02-24) Manages BGP Address-family configuration
cisco.nxos.nxos_bgp_global BGP Global resource module
cisco.nxos.nxos_bgp_neighbor (deprecated, removed after 2023-01-27) Manages BGP neighbors configurations
cisco.nxos.nxos_bgp_neighbor_address_family BGP Neighbor Address Family resource module
cisco.nxos.nxos_bgp_neighbor_af (deprecated, removed after 2023-02-24) Manages BGP address-family's neighbors configuration
cisco.nxos.nxos_command Run arbitrary command on Cisco NXOS devices
cisco.nxos.nxos_config Manage Cisco NXOS configuration sections
cisco.nxos.nxos_evpn_global Handles the EVPN control plane for VXLAN
cisco.nxos.nxos_evpn_vni Manages Cisco EVPN VXLAN Network Identifier (VNI)
cisco.nxos.nxos_facts Gets facts about NX-OS switches
cisco.nxos.nxos_feature Manage features in NX-OS switches
cisco.nxos.nxos_file_copy Copy a file to a remote NXOS device
cisco.nxos.nxos_gir Trigger a graceful removal or insertion (GIR) of the switch
cisco.nxos.nxos_gir_profile_management Create a maintenance-mode or normal-mode profile for GIR
cisco.nxos.nxos_hostname Hostname resource module
cisco.nxos.nxos_hsrp Manages HSRP configuration on NX-OS switches
cisco.nxos.nxos_hsrp_interfaces HSRP interfaces resource module
cisco.nxos.nxos_igmp Manages IGMP global configuration
cisco.nxos.nxos_igmp_interface Manages IGMP interface configuration
cisco.nxos.nxos_igmp_snooping Manages IGMP snooping global configuration
cisco.nxos.nxos_install_os Set boot options like boot, kickstart image and issu
cisco.nxos.nxos_interfaces Interfaces resource module
cisco.nxos.nxos_l2_interfaces L2 interfaces resource module
cisco.nxos.nxos_l3_interfaces L3 interfaces resource module
cisco.nxos.nxos_lacp LACP resource module
cisco.nxos.nxos_lacp_interfaces LACP interfaces resource module
cisco.nxos.nxos_lag_interfaces LAG interfaces resource module
cisco.nxos.nxos_lldp_global LLDP resource module
cisco.nxos.nxos_lldp_interfaces LLDP interfaces resource module
cisco.nxos.nxos_logging Manage logging on network devices
cisco.nxos.nxos_logging_global Logging resource module
cisco.nxos.nxos_ntp Manages core NTP configuration
cisco.nxos.nxos_ntp_auth Manages NTP authentication
cisco.nxos.nxos_ntp_global NTP Global resource module
cisco.nxos.nxos_ntp_options Manages NTP options
cisco.nxos.nxos_nxapi Manage NXAPI configuration on an NXOS device
cisco.nxos.nxos_ospf_interfaces OSPF Interfaces Resource Module
cisco.nxos.nxos_ospfv2 OSPFv2 resource module
cisco.nxos.nxos_ospfv3 OSPFv3 resource module
cisco.nxos.nxos_overlay_global Configures anycast gateway MAC of the switch
cisco.nxos.nxos_pim Manages configuration of a PIM instance
cisco.nxos.nxos_pim_interface Manages PIM interface configuration
cisco.nxos.nxos_pim_rp_address Manages configuration of an PIM static RP address instance
cisco.nxos.nxos_ping Tests reachability using ping from Nexus switch
cisco.nxos.nxos_prefix_lists Prefix-Lists resource module
cisco.nxos.nxos_reboot Reboot a network device
cisco.nxos.nxos_rollback Set a checkpoint or rollback to a checkpoint
cisco.nxos.nxos_route_maps Route Maps resource module
cisco.nxos.nxos_rpm Install patch or feature rpms on Cisco NX-OS devices
cisco.nxos.nxos_snapshot Manage snapshots of the running states of selected features
cisco.nxos.nxos_snmp_community (deprecated, removed after 2024-01-01) Manages SNMP community configs
cisco.nxos.nxos_snmp_contact (deprecated, removed after 2024-01-01) Manages SNMP contact info
cisco.nxos.nxos_snmp_host (deprecated, removed after 2024-01-01) Manages SNMP host configuration
cisco.nxos.nxos_snmp_location (deprecated, removed after 2024-01-01) Manages SNMP location information
cisco.nxos.nxos_snmp_server SNMP Server resource module
cisco.nxos.nxos_snmp_traps (deprecated, removed after 2024-01-01) Manages SNMP traps
cisco.nxos.nxos_snmp_user (deprecated, removed after 2024-01-01) Manages SNMP users for monitoring
cisco.nxos.nxos_static_routes Static routes resource module
cisco.nxos.nxos_system Manage the system attributes on Cisco NXOS devices
cisco.nxos.nxos_telemetry TELEMETRY resource module
cisco.nxos.nxos_udld Manages UDLD global configuration params
cisco.nxos.nxos_udld_interface Manages UDLD interface configuration params
cisco.nxos.nxos_user Manage the collection of local users on Nexus devices
cisco.nxos.nxos_vlans VLANs resource module
cisco.nxos.nxos_vpc Manages global VPC configuration
cisco.nxos.nxos_vpc_interface Manages interface VPC configuration
cisco.nxos.nxos_vrf Manages global VRF configuration
cisco.nxos.nxos_vrf_af Manages VRF AF
cisco.nxos.nxos_vrf_interface Manages interface specific VRF configuration
cisco.nxos.nxos_vrrp Manages VRRP configuration on NX-OS switches
cisco.nxos.nxos_vtp_domain Manages VTP domain configuration
cisco.nxos.nxos_vtp_password Manages VTP password configuration
cisco.nxos.nxos_vtp_version Manages VTP version configuration
cisco.nxos.nxos_vxlan_vtep Manages VXLAN Network Virtualization Endpoint (NVE)
cisco.nxos.nxos_vxlan_vtep_vni Creates a Virtual Network Identifier member (VNI)
cisco.nxos.storage.nxos_devicealias Configuration of device alias for Cisco NXOS MDS Switches
cisco.nxos.storage.nxos_vsan Configuration of vsan for Cisco NXOS MDS Switches
cisco.nxos.storage.nxos_zone_zoneset Configuration of zone/zoneset for Cisco NXOS MDS Switches
cloud.common.turbo_demo A demo module for ansible_module.turbo
cloud.common.turbo_fail A short module which honor additional args when calling fail_json
cloud.common.turbo_import A demo module to test import logic for turbo mode
cloud.terraform.terraform Manages a Terraform deployment (and plans)
cloud.terraform.terraform_output Returns Terraform module outputs
frr.frr.frr_bgp Configure global BGP settings on Free Range Routing(FRR)
frr.frr.frr_facts Collect facts from remote devices running Free Range Routing (FRR)
ibm.qradar.deploy Trigger a qradar configuration deployment
ibm.qradar.log_source_management Manage Log Sources in QRadar
ibm.qradar.offense_action Take action on a QRadar Offense
ibm.qradar.offense_info Obtain information about one or many QRadar Offenses, with filter options
ibm.qradar.offense_note Create or update a QRadar Offense Note
ibm.qradar.qradar_analytics_rules Qradar Analytics Rules Management resource module
ibm.qradar.qradar_log_sources_management Qradar Log Sources Management resource module
ibm.qradar.rule Manage state of QRadar Rules, with filter options
ibm.qradar.rule_info Obtain information about one or many QRadar Rules, with filter options
junipernetworks.junos.junos_acl_interfaces ACL interfaces resource module
junipernetworks.junos.junos_acls ACLs resource module
junipernetworks.junos.junos_banner Manage multiline banners on Juniper JUNOS devices
junipernetworks.junos.junos_bgp_address_family Manage BGP Address Family attributes of interfaces on Junos devices
junipernetworks.junos.junos_bgp_global Manages BGP Global configuration on devices running Juniper JUNOS
junipernetworks.junos.junos_command Run arbitrary commands on an Juniper JUNOS device
junipernetworks.junos.junos_config Manage configuration on devices running Juniper JUNOS
junipernetworks.junos.junos_facts Collect facts from remote devices running Juniper Junos
junipernetworks.junos.junos_hostname Manage Hostname server configuration on Junos devices
junipernetworks.junos.junos_interfaces Junos Interfaces resource module
junipernetworks.junos.junos_l2_interfaces L2 interfaces resource module
junipernetworks.junos.junos_l3_interfaces L3 interfaces resource module
junipernetworks.junos.junos_lacp Global Link Aggregation Control Protocol (LACP) Junos resource module
junipernetworks.junos.junos_lacp_interfaces LACP interfaces resource module
junipernetworks.junos.junos_lag_interfaces Link Aggregation Juniper JUNOS resource module
junipernetworks.junos.junos_lldp_global LLDP resource module
junipernetworks.junos.junos_lldp_interfaces LLDP interfaces resource module
junipernetworks.junos.junos_logging Manage logging on network devices
junipernetworks.junos.junos_logging_global Manage logging configuration on Junos devices
junipernetworks.junos.junos_netconf Configures the Junos Netconf system service
junipernetworks.junos.junos_ntp_global Manage NTP configuration on Junos devices
junipernetworks.junos.junos_ospf_interfaces OSPF Interfaces Resource Module
junipernetworks.junos.junos_ospfv2 OSPFv2 resource module
junipernetworks.junos.junos_ospfv3 OSPFv3 resource module
junipernetworks.junos.junos_package Installs packages on remote devices running Junos
junipernetworks.junos.junos_ping Tests reachability using ping from devices running Juniper JUNOS
junipernetworks.junos.junos_prefix_lists Manage prefix-lists attributes of interfaces on Junos devices
junipernetworks.junos.junos_routing_instances Manage routing instances on Junos devices
junipernetworks.junos.junos_routing_options Manage routing-options configuration on Junos devices
junipernetworks.junos.junos_rpc Runs an arbitrary RPC over NetConf on an Juniper JUNOS device
junipernetworks.junos.junos_scp Transfer files from or to remote devices running Junos
junipernetworks.junos.junos_security_policies Create and manage security policies on Juniper JUNOS devices
junipernetworks.junos.junos_security_policies_global Manage global security policy settings on Juniper JUNOS devices
junipernetworks.junos.junos_security_zones Manage security zones on Juniper JUNOS devices
junipernetworks.junos.junos_snmp_server Manage SNMP server configuration on Junos devices
junipernetworks.junos.junos_static_routes Static routes resource module
junipernetworks.junos.junos_system Manage the system attributes on Juniper JUNOS devices
junipernetworks.junos.junos_user Manage local user accounts on Juniper JUNOS devices
junipernetworks.junos.junos_vlans VLANs resource module
junipernetworks.junos.junos_vrf Manage the VRF definitions on Juniper JUNOS devices
kubernetes.core.helm Manages Kubernetes packages with the Helm package manager
kubernetes.core.helm_info Get information from Helm package deployed inside the cluster
kubernetes.core.helm_plugin Manage Helm plugins
kubernetes.core.helm_plugin_info Gather information about Helm plugins
kubernetes.core.helm_pull download a chart from a repository and (optionally) unpack it in local directory
kubernetes.core.helm_repository Manage Helm repositories
kubernetes.core.helm_template Render chart templates
kubernetes.core.k8s Manage Kubernetes (K8s) objects
kubernetes.core.k8s_cluster_info Describe Kubernetes (K8s) cluster, APIs available and their respective versions
kubernetes.core.k8s_cp Copy files and directories to and from pod
kubernetes.core.k8s_drain Drain, Cordon, or Uncordon node in k8s cluster
kubernetes.core.k8s_exec Execute command in Pod
kubernetes.core.k8s_info Describe Kubernetes (K8s) objects
kubernetes.core.k8s_json_patch Apply JSON patch operations to existing objects
kubernetes.core.k8s_log Fetch logs from Kubernetes resources
kubernetes.core.k8s_rollback Rollback Kubernetes (K8S) Deployments and DaemonSets
kubernetes.core.k8s_scale Set a new size for a Deployment, ReplicaSet, Replication Controller, or Job
kubernetes.core.k8s_service Manage Services on Kubernetes
kubernetes.core.k8s_taint Taint a node in a Kubernetes/OpenShift cluster
microsoft.ad.computer Manage Active Directory computer objects
microsoft.ad.debug_ldap_client Get host information for debugging LDAP connections
microsoft.ad.domain Ensures the existence of a Windows domain
microsoft.ad.domain_controller Manage domain controller/member server state for a Windows host
microsoft.ad.group Manage Active Directory group objects
microsoft.ad.membership Manage domain/workgroup membership for a Windows host
microsoft.ad.object Manage Active Directory objects
microsoft.ad.object_info Gather information an Active Directory object
microsoft.ad.offline_join Get the Offline Domain Join BLOB
microsoft.ad.ou Manage Active Directory organizational units
microsoft.ad.user Manage Active Directory users
openvswitch.openvswitch.openvswitch_bond Manage Open vSwitch bonds
openvswitch.openvswitch.openvswitch_bridge Manage Open vSwitch bridges
openvswitch.openvswitch.openvswitch_db Configure open vswitch database
openvswitch.openvswitch.openvswitch_port Manage Open vSwitch ports
redhat.amq_broker.xml Manage bits and pieces of XML files or strings
redhat.insights.insights_config This module handles initial configuration of the insights client on install
redhat.insights.insights_register This module registers the insights client
redhat.openshift.k8s Manage OpenShift objects
redhat.openshift.openshift_adm_groups_sync Sync OpenShift Groups with records from an external provider
redhat.openshift.openshift_adm_migrate_template_instances Update TemplateInstances to point to the latest group-version-kinds
redhat.openshift.openshift_adm_prune_auth Removes references to the specified roles, clusterroles, users, and groups
redhat.openshift.openshift_adm_prune_builds Prune old completed and failed builds
redhat.openshift.openshift_adm_prune_deployments Remove old completed and failed deployment configs
redhat.openshift.openshift_adm_prune_images Remove unreferenced images
redhat.openshift.openshift_auth Authenticate to OpenShift clusters which require an explicit login step
redhat.openshift.openshift_build Start a new build or Cancel running, pending, or new builds
redhat.openshift.openshift_import_image Import the latest image information from a tag in a container image registry
redhat.openshift.openshift_process Process an OpenShift template.openshift.io/v1 Template
redhat.openshift.openshift_registry_info Display information about the integrated registry
redhat.openshift.openshift_route Expose a Service as an OpenShift Route
redhat.redhat_csp_download.redhat_csp_download Downloads resources from the Red Hat customer portal
redhat.rhel_idm.ipaautomember Add and delete FreeIPA Auto Membership Rules
redhat.rhel_idm.ipaautomountkey Manage FreeIPA autommount map
redhat.rhel_idm.ipaautomountlocation Manage FreeIPA autommount locations
redhat.rhel_idm.ipaautomountmap Manage FreeIPA autommount map
redhat.rhel_idm.ipabackup_get_backup_dir Get IPA_BACKUP_DIR from ipaplatform
redhat.rhel_idm.ipaclient_api Create temporary NSS database, call IPA API for remaining enrollment parts
redhat.rhel_idm.ipaclient_configure_dns_resolver Configure DNS resolver for IPA client
redhat.rhel_idm.ipaclient_fix_ca Fix IPA ca certificate
redhat.rhel_idm.ipaclient_fstore Backup files using IPA client sysrestore
redhat.rhel_idm.ipaclient_get_otp Get OTP for host enrollment
redhat.rhel_idm.ipaclient_ipa_conf Configure ipa.conf
redhat.rhel_idm.ipaclient_join Join a machine to an IPA realm and get a keytab for the host service principal
redhat.rhel_idm.ipaclient_set_hostname Backup and set hostname
redhat.rhel_idm.ipaclient_setup_automount Setup automount for IPA client
redhat.rhel_idm.ipaclient_setup_certmonger Setup certmonger for IPA client
redhat.rhel_idm.ipaclient_setup_firefox Setup firefox for IPA client
redhat.rhel_idm.ipaclient_setup_krb5 Setup krb5 for IPA client
redhat.rhel_idm.ipaclient_setup_nis Setup NIS for IPA client
redhat.rhel_idm.ipaclient_setup_nss Create IPA client NSS database
redhat.rhel_idm.ipaclient_setup_ntp Setup NTP for IPA client
redhat.rhel_idm.ipaclient_setup_ssh Configure ssh and sshd for IPA client
redhat.rhel_idm.ipaclient_setup_sssd Setup sssd for IPA client
redhat.rhel_idm.ipaclient_temp_krb5 Create temporary krb5 configuration
redhat.rhel_idm.ipaclient_test Tries to discover IPA server
redhat.rhel_idm.ipaclient_test_keytab Test if the krb5.keytab on the machine is valid and can be used
redhat.rhel_idm.ipaconfig Modify IPA global config options
redhat.rhel_idm.ipadelegation Manage FreeIPA delegations
redhat.rhel_idm.ipadnsconfig Manage FreeIPA dnsconfig
redhat.rhel_idm.ipadnsforwardzone Manage FreeIPA DNS Forwarder Zones
redhat.rhel_idm.ipadnsrecord Manage FreeIPA DNS records
redhat.rhel_idm.ipadnszone Manage FreeIPA dnszone
redhat.rhel_idm.ipagroup Manage FreeIPA groups
redhat.rhel_idm.ipahbacrule Manage FreeIPA HBAC rules
redhat.rhel_idm.ipahbacsvc Manage FreeIPA HBAC Services
redhat.rhel_idm.ipahbacsvcgroup Manage FreeIPA hbacsvcgroups
redhat.rhel_idm.ipahost Manage FreeIPA hosts
redhat.rhel_idm.ipahostgroup Manage FreeIPA hostgroups
redhat.rhel_idm.ipaidrange Manage FreeIPA idrange
redhat.rhel_idm.ipalocation Manage FreeIPA location
redhat.rhel_idm.ipanetgroup NIS entities can be stored in netgroups
redhat.rhel_idm.ipapermission Manage FreeIPA permission
redhat.rhel_idm.ipaprivilege Manage FreeIPA privilege
redhat.rhel_idm.ipapwpolicy Manage FreeIPA pwpolicies
redhat.rhel_idm.ipareplica_add_to_ipaservers Add to ipaservers
redhat.rhel_idm.ipareplica_create_ipa_conf Create ipa.conf
redhat.rhel_idm.ipareplica_custodia_import_dm_password Import dm password into custodia
redhat.rhel_idm.ipareplica_ds_apply_updates DS apply updates
redhat.rhel_idm.ipareplica_ds_enable_ssl DS enable SSL
redhat.rhel_idm.ipareplica_enable_ipa Enable IPA
redhat.rhel_idm.ipareplica_install_ca_certs Install CA certs
redhat.rhel_idm.ipareplica_krb_enable_ssl KRB enable SSL
redhat.rhel_idm.ipareplica_master_password Generate kerberos master password if not given
redhat.rhel_idm.ipareplica_prepare Prepare ipa replica installation
redhat.rhel_idm.ipareplica_promote_openldap_conf Promote openldap.conf
redhat.rhel_idm.ipareplica_promote_sssd Promote sssd
redhat.rhel_idm.ipareplica_restart_kdc Restart KDC
redhat.rhel_idm.ipareplica_setup_adtrust Setup adtrust
redhat.rhel_idm.ipareplica_setup_ca Setup CA
redhat.rhel_idm.ipareplica_setup_certmonger Setup certmonger
redhat.rhel_idm.ipareplica_setup_custodia Setup custodia
redhat.rhel_idm.ipareplica_setup_dns Setup DNS
redhat.rhel_idm.ipareplica_setup_ds Setup DS
redhat.rhel_idm.ipareplica_setup_http Setup HTTP
redhat.rhel_idm.ipareplica_setup_kra Setup KRA
redhat.rhel_idm.ipareplica_setup_krb Setup KRB
redhat.rhel_idm.ipareplica_setup_otpd Setup OTPD
redhat.rhel_idm.ipareplica_test IPA replica deployment tests
redhat.rhel_idm.iparole Manage FreeIPA role
redhat.rhel_idm.ipaselfservice Manage FreeIPA selfservices
redhat.rhel_idm.ipaserver Manage FreeIPA server
redhat.rhel_idm.ipaserver_enable_ipa Enable IPA
redhat.rhel_idm.ipaserver_get_connected_server Get connected servers for server
redhat.rhel_idm.ipaserver_load_cache Load cache file
redhat.rhel_idm.ipaserver_master_password Generate kerberos master password if not given
redhat.rhel_idm.ipaserver_prepare Prepare IPA server deployment
redhat.rhel_idm.ipaserver_set_ds_password Set DS password
redhat.rhel_idm.ipaserver_setup_adtrust Setup trust ad
redhat.rhel_idm.ipaserver_setup_ca Setup CA
redhat.rhel_idm.ipaserver_setup_custodia Setup custodia
redhat.rhel_idm.ipaserver_setup_dns Setup DNS
redhat.rhel_idm.ipaserver_setup_ds Configure directory server
redhat.rhel_idm.ipaserver_setup_http Setup HTTP
redhat.rhel_idm.ipaserver_setup_kra Setup KRA
redhat.rhel_idm.ipaserver_setup_krb Setup KRB
redhat.rhel_idm.ipaserver_setup_ntp Setup NTP
redhat.rhel_idm.ipaserver_setup_otpd Setup OTPD
redhat.rhel_idm.ipaserver_test IPA server test
redhat.rhel_idm.ipaservice Manage FreeIPA service
redhat.rhel_idm.ipaservicedelegationrule Manage FreeIPA servicedelegationrule
redhat.rhel_idm.ipaservicedelegationtarget Manage FreeIPA servicedelegationtarget
redhat.rhel_idm.ipasmartcard_client_get_vars Get variables from ipaplatform and python interpreter used for the module
redhat.rhel_idm.ipasmartcard_client_validate_ca_certs Validate CA certs
redhat.rhel_idm.ipasmartcard_server_get_vars Get variables from ipaplatform and ipaserver and python interpreter
redhat.rhel_idm.ipasmartcard_server_validate_ca_certs Validate CA certs
redhat.rhel_idm.ipasudocmd Manage FreeIPA sudo command
redhat.rhel_idm.ipasudocmdgroup Manage FreeIPA sudocmd groups
redhat.rhel_idm.ipasudorule Manage FreeIPA sudo rules
redhat.rhel_idm.ipatopologysegment Manage FreeIPA topology segments
redhat.rhel_idm.ipatopologysuffix Verify FreeIPA topology suffix
redhat.rhel_idm.ipatrust Manage FreeIPA Domain Trusts
redhat.rhel_idm.ipauser Manage FreeIPA users
redhat.rhel_idm.ipavault Manage vaults and secret vaults
redhat.rhel_system_roles.blivet Module for management of linux block device stacks
redhat.rhel_system_roles.blockdev_info Collect info about block devices in the system
redhat.rhel_system_roles.bsize Module for basic manipulation with byte sizes
redhat.rhel_system_roles.certificate_request Manage SSL/TLS certificates
redhat.rhel_system_roles.find_unused_disk Gets unused disks
redhat.rhel_system_roles.firewall_lib Module for firewall role
redhat.rhel_system_roles.firewall_lib_facts module for firewall role
redhat.rhel_system_roles.ini_file Tweak settings in INI files
redhat.rhel_system_roles.kernel_settings Manage kernel settings using tuned via a wrapper
redhat.rhel_system_roles.local_semodule Manages SELinux modules
redhat.rhel_system_roles.local_seport Manages SELinux network port type definitions
redhat.rhel_system_roles.lvm_gensym Generate default names for lvm variables
redhat.rhel_system_roles.mount Control active and configured mount points
redhat.rhel_system_roles.nbde_client_clevis Handle clevis-related operations on LUKS devices
redhat.rhel_system_roles.nbde_server_tang Handle key management operations in a tang server
redhat.rhel_system_roles.network_connections module for network role to manage connection profiles
redhat.rhel_system_roles.network_state module for network role to apply network state configuration
redhat.rhel_system_roles.podman_container_info Gather facts about containers using podman
redhat.rhel_system_roles.podman_image Pull images for use by podman
redhat.rhel_system_roles.podman_play Play kubernetes YAML file using podman
redhat.rhel_system_roles.redhat_subscription Manage registration and subscriptions to RHSM using `subscription-manager'
redhat.rhel_system_roles.resolve_blockdev Resolve block device specification to device node path
redhat.rhel_system_roles.rhsm_release Set or Unset RHSM Release version
redhat.rhel_system_roles.rhsm_repository Manage RHSM repositories using the subscription-manager command
redhat.rhel_system_roles.seboolean Toggles SELinux booleans
redhat.rhel_system_roles.sefcontext Manages SELinux file context mapping definitions
redhat.rhel_system_roles.selinux Change policy and state of SELinux
redhat.rhel_system_roles.selinux_modules_facts Gather state of SELinux modules
redhat.rhel_system_roles.selogin Manages linux user to SELinux user mapping
redhat.rhel_system_roles.seport Manages SELinux network port type definitions
redhat.rhel_system_roles.timesync_provider UNDOCUMENTED
redhat.rhv.ovirt_affinity_group Module to manage affinity groups in oVirt/RHV
redhat.rhv.ovirt_affinity_label Module to manage affinity labels in oVirt/RHV
redhat.rhv.ovirt_affinity_label_info Retrieve information about one or more oVirt/RHV affinity labels
redhat.rhv.ovirt_api_info Retrieve information about the oVirt/RHV API
redhat.rhv.ovirt_auth Module to manage authentication to oVirt/RHV
redhat.rhv.ovirt_cluster Module to manage clusters in oVirt/RHV
redhat.rhv.ovirt_cluster_info Retrieve information about one or more oVirt/RHV clusters
redhat.rhv.ovirt_datacenter Module to manage data centers in oVirt/RHV
redhat.rhv.ovirt_datacenter_info Retrieve information about one or more oVirt/RHV datacenters
redhat.rhv.ovirt_disk Module to manage Virtual Machine and floating disks in oVirt/RHV
redhat.rhv.ovirt_disk_info Retrieve information about one or more oVirt/RHV disks
redhat.rhv.ovirt_disk_profile Module to manage storage domain disk profiles in rhv
redhat.rhv.ovirt_event Create or delete an event in oVirt/RHV
redhat.rhv.ovirt_event_info This module can be used to retrieve information about one or more oVirt/RHV events
redhat.rhv.ovirt_external_provider Module to manage external providers in oVirt/RHV
redhat.rhv.ovirt_external_provider_info Retrieve information about one or more oVirt/RHV external providers
redhat.rhv.ovirt_group Module to manage groups in oVirt/RHV
redhat.rhv.ovirt_group_info Retrieve information about one or more oVirt/RHV groups
redhat.rhv.ovirt_host Module to manage hosts in oVirt/RHV
redhat.rhv.ovirt_host_info Retrieve information about one or more oVirt/RHV hosts
redhat.rhv.ovirt_host_network Module to manage host networks in oVirt/RHV
redhat.rhv.ovirt_host_pm Module to manage power management of hosts in oVirt/RHV
redhat.rhv.ovirt_host_storage_info Retrieve information about one or more oVirt/RHV HostStorages (applicable only for block storage)
redhat.rhv.ovirt_instance_type Module to manage Instance Types in oVirt/RHV
redhat.rhv.ovirt_job Module to manage jobs in oVirt/RHV
redhat.rhv.ovirt_mac_pool Module to manage MAC pools in oVirt/RHV
redhat.rhv.ovirt_network Module to manage logical networks in oVirt/RHV
redhat.rhv.ovirt_network_info Retrieve information about one or more oVirt/RHV networks
redhat.rhv.ovirt_nic Module to manage network interfaces of Virtual Machines in oVirt/RHV
redhat.rhv.ovirt_nic_info Retrieve information about one or more oVirt/RHV virtual machine network interfaces
redhat.rhv.ovirt_permission Module to manage permissions of users/groups in oVirt/RHV
redhat.rhv.ovirt_permission_info Retrieve information about one or more oVirt/RHV permissions
redhat.rhv.ovirt_qos Module to manage QoS entries in rhv
redhat.rhv.ovirt_quota Module to manage datacenter quotas in oVirt/RHV
redhat.rhv.ovirt_quota_info Retrieve information about one or more oVirt/RHV quotas
redhat.rhv.ovirt_role Module to manage roles in oVirt/RHV
redhat.rhv.ovirt_scheduling_policy_info Retrieve information about one or more oVirt scheduling policies
redhat.rhv.ovirt_snapshot Module to manage Virtual Machine Snapshots in oVirt/RHV
redhat.rhv.ovirt_snapshot_info Retrieve information about one or more oVirt/RHV virtual machine snapshots
redhat.rhv.ovirt_storage_connection Module to manage storage connections in oVirt
redhat.rhv.ovirt_storage_domain Module to manage storage domains in oVirt/RHV
redhat.rhv.ovirt_storage_domain_info Retrieve information about one or more oVirt/RHV storage domains
redhat.rhv.ovirt_storage_template_info Retrieve information about one or more oVirt/RHV templates relate to a storage domain
redhat.rhv.ovirt_storage_vm_info Retrieve information about one or more oVirt/RHV virtual machines relate to a storage domain
redhat.rhv.ovirt_system_option_info Retrieve information about one oVirt/RHV system options
redhat.rhv.ovirt_tag Module to manage tags in oVirt/RHV
redhat.rhv.ovirt_tag_info Retrieve information about one or more oVirt/RHV tags
redhat.rhv.ovirt_template Module to manage virtual machine templates in oVirt/RHV
redhat.rhv.ovirt_template_info Retrieve information about one or more oVirt/RHV templates
redhat.rhv.ovirt_user Module to manage users in oVirt/RHV
redhat.rhv.ovirt_user_info Retrieve information about one or more oVirt/RHV users
redhat.rhv.ovirt_vm Module to manage Virtual Machines in oVirt/RHV
redhat.rhv.ovirt_vm_info Retrieve information about one or more oVirt/RHV virtual machines
redhat.rhv.ovirt_vm_os_info Retrieve information on all supported oVirt/RHV operating systems
redhat.rhv.ovirt_vmpool Module to manage VM pools in oVirt/RHV
redhat.rhv.ovirt_vmpool_info Retrieve information about one or more oVirt/RHV vmpools
redhat.rhv.ovirt_vnic_profile Module to manage vNIC profile of network in oVirt/RHV
redhat.rhv.ovirt_vnic_profile_info Retrieve information about one or more oVirt/RHV vnic profiles
redhat.runtimes_common.product_download Downloads products from the JBoss Network API
redhat.runtimes_common.product_search Searches products from the JBoss Network API
redhat.satellite.activation_key Manage Activation Keys
redhat.satellite.architecture Manage Architectures
redhat.satellite.auth_source_ldap Manage LDAP Authentication Sources
redhat.satellite.bookmark Manage Bookmarks
redhat.satellite.compute_attribute Manage Compute Attributes
redhat.satellite.compute_profile Manage Compute Profiles
redhat.satellite.compute_resource Manage Compute Resources
redhat.satellite.config_group Manage (Puppet) Config Groups
redhat.satellite.content_credential Manage Content Credentials
redhat.satellite.content_export_info List content exports
redhat.satellite.content_export_library Manage library content exports
redhat.satellite.content_export_repository Manage repository content exports
redhat.satellite.content_export_version Manage content view version content exports
redhat.satellite.content_upload Upload content to a repository
redhat.satellite.content_view Manage Content Views
redhat.satellite.content_view_filter Manage Content View Filters
redhat.satellite.content_view_filter_info Fetch information about a Content View Filter
redhat.satellite.content_view_filter_rule Manage content view filter rules
redhat.satellite.content_view_filter_rule_info Fetch information about a Content View Filter Rule
redhat.satellite.content_view_info Fetch information about Content Views
redhat.satellite.content_view_version Manage Content View Versions
redhat.satellite.content_view_version_info Fetch information about Content Views
redhat.satellite.discovery_rule Manage Host Discovery Rules
redhat.satellite.domain Manage Domains
redhat.satellite.domain_info Fetch information about Domains
redhat.satellite.external_usergroup Manage External User Groups
redhat.satellite.global_parameter Manage Global Parameters
redhat.satellite.hardware_model Manage Hardware Models
redhat.satellite.host Manage Hosts
redhat.satellite.host_collection Manage Host Collections
redhat.satellite.host_errata_info Fetch information about Host Errata
redhat.satellite.host_info Fetch information about Hosts
redhat.satellite.host_power Manage Power State of Hosts
redhat.satellite.hostgroup Manage Hostgroups
redhat.satellite.hostgroup_info Get information about hostgroup(s)
redhat.satellite.http_proxy Manage HTTP Proxies
redhat.satellite.image Manage Images
redhat.satellite.installation_medium Manage Installation Media
redhat.satellite.job_invocation Invoke Remote Execution Jobs
redhat.satellite.job_template Manage Job Templates
redhat.satellite.lifecycle_environment Manage Lifecycle Environments
redhat.satellite.location Manage Locations
redhat.satellite.operatingsystem Manage Operating Systems
redhat.satellite.organization Manage Organizations
redhat.satellite.organization_info Get information about organization(s)
redhat.satellite.os_default_template Manage Default Template Associations To Operating Systems
redhat.satellite.partition_table Manage Partition Table Templates
redhat.satellite.product Manage Products
redhat.satellite.provisioning_template Manage Provisioning Templates
redhat.satellite.puppet_environment Manage Puppet Environments
redhat.satellite.puppetclasses_import Import Puppet Classes from a Proxy
redhat.satellite.realm Manage Realms
redhat.satellite.redhat_manifest Interact with a Red Hat Satellite Subscription Manifest
redhat.satellite.repository Manage Repositories
redhat.satellite.repository_info Fetch information about Repositories
redhat.satellite.repository_set Enable/disable Red Hat Repositories available through subscriptions
redhat.satellite.repository_set_info Fetch information about Red Hat Repositories
redhat.satellite.repository_sync Sync a Repository or Product
redhat.satellite.resource_info Gather information about resources
redhat.satellite.role Manage Roles
redhat.satellite.scap_content Manage SCAP content
redhat.satellite.scap_tailoring_file Manage SCAP Tailoring Files
redhat.satellite.setting Manage Settings
redhat.satellite.setting_info Fetch information about Settings
redhat.satellite.smart_class_parameter Manage Smart Class Parameters
redhat.satellite.smart_proxy Manage Smart Proxies
redhat.satellite.status_info Get status info
redhat.satellite.subnet Manage Subnets
redhat.satellite.subnet_info Fetch information about Subnets
redhat.satellite.subscription_info Fetch information about Subscriptions
redhat.satellite.subscription_manifest Manage Subscription Manifests
redhat.satellite.sync_plan Manage Sync Plans
redhat.satellite.templates_import Sync Templates from a repository
redhat.satellite.user Manage Users
redhat.satellite.usergroup Manage User Groups
redhat.sso.sso_client Allows administration of Keycloak clients via Keycloak API
redhat.sso.sso_role Allows administration of Keycloak roles via Keycloak API
redhat.sso.sso_user_federation Allows administration of Keycloak user federations via Keycloak API
sap.sap_operations.hana_backup Create SAP HANA database file backup
sap.sap_operations.hdbuserstore Manage the HANA user store (HANA command hdbuserstore)
sap.sap_operations.hdbuserstore_info Get information from HANA user store (HANA command hdbsuserstore)
sap.sap_operations.parameter_info Parameter information
sap.sap_operations.rolling_kernel_switch Manage Rolling kernel switch
sap.sap_operations.service Manage SAP HANA services
sap.sap_operations.system Manage SAP system
sap.sap_operations.system_info SAP system information
servicenow.itsm.api Manage ServiceNow POST, PATCH and DELETE requests
servicenow.itsm.api_info Manage ServiceNow GET requests
servicenow.itsm.attachment a module that users can use to download attachment using sys_id
servicenow.itsm.change_request Manage ServiceNow change requests
servicenow.itsm.change_request_info List ServiceNow change requests
servicenow.itsm.change_request_task Manage ServiceNow change request tasks
servicenow.itsm.change_request_task_info List ServiceNow change request tasks
servicenow.itsm.configuration_item Manage ServiceNow configuration items
servicenow.itsm.configuration_item_batch Manage ServiceNow configuration items in batch mode
servicenow.itsm.configuration_item_info List ServiceNow configuration item
servicenow.itsm.incident Manage ServiceNow incidents
servicenow.itsm.incident_info List ServiceNow incidents
servicenow.itsm.problem Manage ServiceNow problems
servicenow.itsm.problem_info List ServiceNow problems
servicenow.itsm.problem_task Manage ServiceNow problem tasks
servicenow.itsm.problem_task_info List ServiceNow problem tasks
splunk.es.adaptive_response_notable_event Manage Splunk Enterprise Security Notable Event Adaptive Responses
splunk.es.correlation_search Manage Splunk Enterprise Security Correlation Searches
splunk.es.correlation_search_info Manage Splunk Enterprise Security Correlation Searches
splunk.es.data_input_monitor Manage Splunk Data Inputs of type Monitor
splunk.es.data_input_network Manage Splunk Data Inputs of type TCP or UDP
splunk.es.splunk_adaptive_response_notable_events Manage Adaptive Responses notable events resource module
splunk.es.splunk_correlation_searches Splunk Enterprise Security Correlation searches resource module
splunk.es.splunk_data_inputs_monitor Splunk Data Inputs of type Monitor resource module
splunk.es.splunk_data_inputs_network Manage Splunk Data Inputs of type TCP or UDP resource module
trendmicro.deepsec.deepsec_anti_malware Create a new antimalware under TrendMicro Deep Security Policy
trendmicro.deepsec.deepsec_anti_malwares Manages AntiMalware Rule resource module
trendmicro.deepsec.deepsec_apikey Create a new and manage API Keys
trendmicro.deepsec.deepsec_firewall_rules Manages Firewall Rule resource module
trendmicro.deepsec.deepsec_firewallrules Create a new firewall rule
trendmicro.deepsec.deepsec_hosts_info Obtain information about one or many Hosts defined by TrendMicro Deep Security
trendmicro.deepsec.deepsec_integrity_monitoring_rules Manages Integrity Monitoring Rule resource module
trendmicro.deepsec.deepsec_integrity_monitoringrules Create/Configure Integrity Monitoring Rules
trendmicro.deepsec.deepsec_intrusion_prevention_rules Intrusion Prevention Rule resource module
trendmicro.deepsec.deepsec_intrusion_preventionrules Create a new intrusion prevention rule
trendmicro.deepsec.deepsec_log_inspection_rules Manages Log Inspection Rule resource module
trendmicro.deepsec.deepsec_log_inspectionrules Create a new log inspection rule
trendmicro.deepsec.deepsec_syslog Configure or create a syslog configuration for TrendMicro Deep Security
trendmicro.deepsec.deepsec_system_settings Modify the system settings for TrendMicro Deep Security
vmware.vmware_rest.appliance_access_consolecli Set enabled state of the console-based controlled CLI (TTY1)
vmware.vmware_rest.appliance_access_consolecli_info Get enabled state of the console-based controlled CLI (TTY1)
vmware.vmware_rest.appliance_access_dcui Set enabled state of Direct Console User Interface (DCUI TTY2)
vmware.vmware_rest.appliance_access_dcui_info Get enabled state of Direct Console User Interface (DCUI TTY2)
vmware.vmware_rest.appliance_access_shell Set enabled state of BASH, that is, access to BASH from within the controlled CLI
vmware.vmware_rest.appliance_access_shell_info Get enabled state of BASH, that is, access to BASH from within the controlled CLI
vmware.vmware_rest.appliance_access_ssh Set enabled state of the SSH-based controlled CLI
vmware.vmware_rest.appliance_access_ssh_info Get enabled state of the SSH-based controlled CLI
vmware.vmware_rest.appliance_health_applmgmt_info Get health status of applmgmt services
vmware.vmware_rest.appliance_health_database_info Returns the health status of the database
vmware.vmware_rest.appliance_health_databasestorage_info Get database storage health
vmware.vmware_rest.appliance_health_load_info Get load health
vmware.vmware_rest.appliance_health_mem_info Get memory health
vmware.vmware_rest.appliance_health_softwarepackages_info Get information on available software updates available in the remote vSphere Update Manager repository
vmware.vmware_rest.appliance_health_storage_info Get storage health
vmware.vmware_rest.appliance_health_swap_info Get swap health
vmware.vmware_rest.appliance_health_system_info Get overall health of system
vmware.vmware_rest.appliance_infraprofile_configs Exports the desired profile specification
vmware.vmware_rest.appliance_infraprofile_configs_info List all the profiles which are registered
vmware.vmware_rest.appliance_localaccounts_globalpolicy Set the global password policy
vmware.vmware_rest.appliance_localaccounts_globalpolicy_info Get the global password policy
vmware.vmware_rest.appliance_localaccounts_info Get the local user account information
vmware.vmware_rest.appliance_monitoring_info Get monitored item info
vmware.vmware_rest.appliance_monitoring_query Get monitoring data
vmware.vmware_rest.appliance_networking Reset and restarts network configuration on all interfaces, also this will renew the DHCP lease for DHCP IP address
vmware.vmware_rest.appliance_networking_dns_domains Set DNS search domains
vmware.vmware_rest.appliance_networking_dns_domains_info Get list of DNS search domains
vmware.vmware_rest.appliance_networking_dns_hostname Set the Fully Qualified Domain Name
vmware.vmware_rest.appliance_networking_dns_hostname_info Get the Fully Qualified Doman Name
vmware.vmware_rest.appliance_networking_dns_servers Set the DNS server configuration
vmware.vmware_rest.appliance_networking_dns_servers_info Get DNS server configuration
vmware.vmware_rest.appliance_networking_firewall_inbound Set the ordered list of firewall rules to allow or deny traffic from one or more incoming IP addresses
vmware.vmware_rest.appliance_networking_firewall_inbound_info Get the ordered list of firewall rules
vmware.vmware_rest.appliance_networking_info Get Networking information for all configured interfaces
vmware.vmware_rest.appliance_networking_interfaces_info Get information about a particular network interface
vmware.vmware_rest.appliance_networking_interfaces_ipv4 Set IPv4 network configuration for specific network interface
vmware.vmware_rest.appliance_networking_interfaces_ipv4_info Get IPv4 network configuration for specific NIC
vmware.vmware_rest.appliance_networking_interfaces_ipv6 Set IPv6 network configuration for specific interface
vmware.vmware_rest.appliance_networking_interfaces_ipv6_info Get IPv6 network configuration for specific interface
vmware.vmware_rest.appliance_networking_noproxy Sets servers for which no proxy configuration should be applied
vmware.vmware_rest.appliance_networking_noproxy_info Returns servers for which no proxy configuration will be applied
vmware.vmware_rest.appliance_networking_proxy Configures which proxy server to use for the specified protocol
vmware.vmware_rest.appliance_networking_proxy_info Gets the proxy configuration for a specific protocol
vmware.vmware_rest.appliance_ntp Set NTP servers
vmware.vmware_rest.appliance_ntp_info Get the NTP configuration status
vmware.vmware_rest.appliance_services Restarts a service
vmware.vmware_rest.appliance_services_info Returns the state of a service
vmware.vmware_rest.appliance_shutdown Cancel pending shutdown action
vmware.vmware_rest.appliance_shutdown_info Get details about the pending shutdown action
vmware.vmware_rest.appliance_system_globalfips Enable/Disable Global FIPS mode for the appliance
vmware.vmware_rest.appliance_system_globalfips_info Get current appliance FIPS settings
vmware.vmware_rest.appliance_system_storage Resize all partitions to 100 percent of disk size
vmware.vmware_rest.appliance_system_storage_info Get disk to partition mapping
vmware.vmware_rest.appliance_system_time_info Get system time
vmware.vmware_rest.appliance_system_time_timezone Set time zone
vmware.vmware_rest.appliance_system_time_timezone_info Get time zone
vmware.vmware_rest.appliance_system_version_info Get the version
vmware.vmware_rest.appliance_timesync Set time synchronization mode
vmware.vmware_rest.appliance_timesync_info Get time synchronization mode
vmware.vmware_rest.appliance_update_info Gets the current status of the appliance update
vmware.vmware_rest.appliance_vmon_service Lists details of services managed by vMon
vmware.vmware_rest.appliance_vmon_service_info Returns the state of a service
vmware.vmware_rest.content_configuration Updates the configuration
vmware.vmware_rest.content_configuration_info Retrieves the current configuration values
vmware.vmware_rest.content_library_item_info Returns the {@link ItemModel} with the given identifier
vmware.vmware_rest.content_locallibrary Creates a new local library
vmware.vmware_rest.content_locallibrary_info Returns a given local library
vmware.vmware_rest.content_subscribedlibrary Creates a new subscribed library
vmware.vmware_rest.content_subscribedlibrary_info Returns a given subscribed library
vmware.vmware_rest.vcenter_cluster_info Retrieves information about the cluster corresponding to {@param.name cluster}
vmware.vmware_rest.vcenter_datacenter Create a new datacenter in the vCenter inventory
vmware.vmware_rest.vcenter_datacenter_info Retrieves information about the datacenter corresponding to {@param.name datacenter}
vmware.vmware_rest.vcenter_datastore_info Retrieves information about the datastore indicated by {@param.name datastore}
vmware.vmware_rest.vcenter_folder_info Returns information about at most 1000 visible (subject to permission checks) folders in vCenter matching the {@link FilterSpec}
vmware.vmware_rest.vcenter_host Add a new standalone host in the vCenter inventory
vmware.vmware_rest.vcenter_host_info Returns information about at most 2500 visible (subject to permission checks) hosts in vCenter matching the {@link FilterSpec}
vmware.vmware_rest.vcenter_network_info Returns information about at most 1000 visible (subject to permission checks) networks in vCenter matching the {@link FilterSpec}
vmware.vmware_rest.vcenter_ovf_libraryitem Creates a library item in content library from a virtual machine or virtual appliance
vmware.vmware_rest.vcenter_resourcepool Creates a resource pool
vmware.vmware_rest.vcenter_resourcepool_info Retrieves information about the resource pool indicated by {@param.name resourcePool}
vmware.vmware_rest.vcenter_storage_policies_info Returns information about at most 1024 visible (subject to permission checks) storage solicies availabe in vCenter
vmware.vmware_rest.vcenter_vm Creates a virtual machine
vmware.vmware_rest.vcenter_vm_guest_customization Applies a customization specification on the virtual machine
vmware.vmware_rest.vcenter_vm_guest_filesystem_directories Creates a directory in the guest operating system
vmware.vmware_rest.vcenter_vm_guest_identity_info Return information about the guest
vmware.vmware_rest.vcenter_vm_guest_localfilesystem_info Returns details of the local file systems in the guest operating system
vmware.vmware_rest.vcenter_vm_guest_networking_info Returns information about the network configuration in the guest operating system
vmware.vmware_rest.vcenter_vm_guest_networking_interfaces_info Returns information about the networking interfaces in the guest operating system
vmware.vmware_rest.vcenter_vm_guest_networking_routes_info Returns information about network routing in the guest operating system