mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
Updated modules for Avi version 17.2.8 (#37344)
This commit is contained in:
parent
248ca2df21
commit
5bdc32ff8d
5 changed files with 60 additions and 0 deletions
|
@ -91,6 +91,16 @@ options:
|
|||
- Field deprecated in 17.1.1.
|
||||
- Default value when not specified in API or module is interpreted by Avi Controller as False.
|
||||
type: bool
|
||||
bulk_sync_kvcache:
|
||||
description:
|
||||
- (this is a beta feature).
|
||||
- Sync key-value cache to the new ses when vs is scaled out.
|
||||
- For ex ssl sessions are stored using vs's key-value cache.
|
||||
- When the vs is scaled out, the ssl session information is synced to the new se, allowing existing ssl sessions to be reused on the new se.
|
||||
- Field introduced in 17.2.7, 18.1.1.
|
||||
- Default value when not specified in API or module is interpreted by Avi Controller as False.
|
||||
version_added: "2.6"
|
||||
type: bool
|
||||
client_auth:
|
||||
description:
|
||||
- Http authentication configuration for protected resources.
|
||||
|
@ -229,6 +239,11 @@ options:
|
|||
description:
|
||||
- Subnet and/or network for allocating virtualservice ip by ipam provider module.
|
||||
- Field deprecated in 17.1.1.
|
||||
l4_policies:
|
||||
description:
|
||||
- L4 policies applied to the data traffic of the virtual service.
|
||||
- Field introduced in 17.2.7.
|
||||
version_added: "2.6"
|
||||
limit_doser:
|
||||
description:
|
||||
- Limit potential dos attackers who exceed max_cps_per_client significantly to a fraction of max_cps_per_client for a while.
|
||||
|
@ -367,6 +382,14 @@ options:
|
|||
- It is a reference to an object of type trafficcloneprofile.
|
||||
- Field introduced in 17.1.1.
|
||||
version_added: "2.4"
|
||||
traffic_enabled:
|
||||
description:
|
||||
- Knob to enable the virtual service traffic on its assigned service engines.
|
||||
- This setting is effective only when the enabled flag is set to true.
|
||||
- Field introduced in 17.2.8.
|
||||
- Default value when not specified in API or module is interpreted by Avi Controller as True.
|
||||
version_added: "2.6"
|
||||
type: bool
|
||||
type:
|
||||
description:
|
||||
- Specify if this is a normal virtual service, or if it is the parent or child of an sni-enabled virtual hosted virtual service.
|
||||
|
@ -490,6 +513,7 @@ def main():
|
|||
availability_zone=dict(type='str',),
|
||||
avi_allocated_fip=dict(type='bool',),
|
||||
avi_allocated_vip=dict(type='bool',),
|
||||
bulk_sync_kvcache=dict(type='bool',),
|
||||
client_auth=dict(type='dict',),
|
||||
close_client_conn_on_config_update=dict(type='bool',),
|
||||
cloud_config_cksum=dict(type='str',),
|
||||
|
@ -521,6 +545,7 @@ def main():
|
|||
ign_pool_net_reach=dict(type='bool',),
|
||||
ip_address=dict(type='dict',),
|
||||
ipam_network_subnet=dict(type='dict',),
|
||||
l4_policies=dict(type='list',),
|
||||
limit_doser=dict(type='bool',),
|
||||
max_cps_per_client=dict(type='int',),
|
||||
microservice_ref=dict(type='str',),
|
||||
|
@ -552,6 +577,7 @@ def main():
|
|||
subnet_uuid=dict(type='str',),
|
||||
tenant_ref=dict(type='str',),
|
||||
traffic_clone_profile_ref=dict(type='str',),
|
||||
traffic_enabled=dict(type='bool',),
|
||||
type=dict(type='str',),
|
||||
url=dict(type='str',),
|
||||
use_bridge_ip_as_vip=dict(type='bool',),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue