Class: Ansible::Ruby::Modules::Bigip_firewall_address_list
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Bigip_firewall_address_list
- Defined in:
- lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb,
lib/ansible/ruby/modules/generated/network/f5/bigip_security_address_list.rb
Overview
Manages the AFM address lists on a BIG-IP. This module can be used to add and remove address list entries.
Instance Method Summary collapse
-
#address_lists ⇒ Object?
Simple list of existing address lists to add to this list.
-
#address_ranges ⇒ Object?
A list of address ranges where the range starts with a port number, is followed by a dash (-) and then a second number.,If the first address is greater than the second number, the numbers will be reversed so-as to be properly formatted.
-
#addresses ⇒ Array<String>, ...
Individual addresses that you want to add to the list.
-
#description ⇒ Object?
Description of the address list.
-
#fqdns ⇒ Object?
A list of fully qualified domain names (FQDNs).,An FQDN has at least one decimal point in it, separating the host from the domain.,To add FQDNs to a list requires that a global FQDN resolver be configured.
-
#geo_locations ⇒ Object?
List of geolocations specified by their C(country) and C(region).
-
#name ⇒ String
Specifies the name of the address list.
-
#partition ⇒ String?
Device partition to manage resources on.
-
#state ⇒ :present, ...
When C(present), ensures that the address list and entries exists.,When C(absent), ensures the address list is removed.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, fix_inclusion, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#address_lists ⇒ Object?
Returns Simple list of existing address lists to add to this list. Address lists can be specified in either their fully qualified name (/Common/foo) or their short name (foo). If a short name is used, the C(partition) argument will automatically be prepended to the short name.
33 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 33 attribute :address_lists |
#address_ranges ⇒ Object?
Returns A list of address ranges where the range starts with a port number, is followed by a dash (-) and then a second number.,If the first address is greater than the second number, the numbers will be reversed so-as to be properly formatted. ie, C(2.2.2.2-1.1.1). would become C(1.1.1.1-2.2.2.2).
30 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 30 attribute :address_ranges |
#addresses ⇒ Array<String>, ...
Returns Individual addresses that you want to add to the list. These addresses differ from ranges, and lists of lists such as what can be used in C(address_ranges) and C(address_lists) respectively.,This list can also include networks that have CIDR notation.
26 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 26 attribute :addresses |
#description ⇒ Object?
Returns Description of the address list.
20 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 20 attribute :description |
#fqdns ⇒ Object?
Returns A list of fully qualified domain names (FQDNs).,An FQDN has at least one decimal point in it, separating the host from the domain.,To add FQDNs to a list requires that a global FQDN resolver be configured. At the moment, this must either be done via C(bigip_command), or, in the GUI of BIG-IP. If using C(bigip_command), this can be done with C(tmsh modify security firewall global-fqdn-policy FOO) where C(FOO) is a DNS resolver configured at C(tmsh create net dns-resolver FOO).
36 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 36 attribute :fqdns |
#geo_locations ⇒ Object?
Returns List of geolocations specified by their C(country) and C(region).
23 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 23 attribute :geo_locations |
#name ⇒ String
Returns Specifies the name of the address list.
12 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 12 attribute :name |
#partition ⇒ String?
Returns Device partition to manage resources on.
16 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 16 attribute :partition |
#state ⇒ :present, ...
Returns When C(present), ensures that the address list and entries exists.,When C(absent), ensures the address list is removed.
39 |
# File 'lib/ansible/ruby/modules/generated/network/f5/bigip_firewall_address_list.rb', line 39 attribute :state |