Skip to content

Commit e4c4887

Browse files
author
Shiva Shankar Vaddepally
committed
solving pip issues
Signed-off-by: Shiva Shankar Vaddepally <[email protected]>
1 parent 6cf38c5 commit e4c4887

6 files changed

Lines changed: 20 additions & 13 deletions

File tree

plugins/module_utils/nitro_resource_map.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16667,7 +16667,6 @@
1666716667
"multihopBfd": {"no_log": False, "type": "bool"},
1666816668
"remoteAS": {"no_log": False, "type": "int"},
1666916669
"singlehopBfd": {"no_log": False, "type": "bool"},
16670-
"state": {"no_log": False, "type": "str"},
1667116670
"updateSource": {"no_log": False, "type": "str"},
1667216671
},
1667316672
},
@@ -50497,7 +50496,7 @@
5049750496
"type": "list",
5049850497
"elements": "dict",
5049950498
"options": {
50500-
"action": {"no_log": False, "type": "str"},
50499+
"action": {"no_log": False, "type": "str", "choices": ["permit", "deny"]},
5050150500
"localPreference": {"no_log": False, "type": "int"},
5050250501
"matchAsPath": {"no_log": False, "type": "str"},
5050350502
"matchCommunity": {"no_log": False, "type": "str"},

plugins/modules/accesslist.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,12 @@
2626
options:
2727
state:
2828
type: str
29-
choices: ["absent", "present", "unset"]
29+
choices: ["absent", "present"]
3030
default: present
3131
description:
3232
- The state of the resource on the NetScaler ADC node.
3333
- When C(present), the resource will be added or updated.
3434
- When C(absent), the resource will be deleted.
35-
- When C(unset), the resource will be unset.
3635
id:
3736
type: str
3837
description:

plugins/modules/bfdinterface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
options:
2727
state:
2828
type: str
29-
choices: ["present", "unset"]
29+
choices: ["present"]
3030
default: present
3131
description:
3232
- The state of the resource on the NetScaler ADC node.

plugins/modules/bgprouter.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
- Shiva Shankar Vaddepally (@shivashankar-vaddepally)
2828
options:
2929
state:
30-
type: str
3130
choices:
3231
- present
3332
- absent
@@ -38,6 +37,7 @@
3837
- When C(present), the resource will be added/updated configured according to the module's parameters.
3938
- When C(absent), the resource will be deleted from the NetScaler ADC node.
4039
- When C(unset), the resource will be unset on the NetScaler ADC node.
40+
type: str
4141
remove_non_updatable_params:
4242
type: str
4343
choices:
@@ -130,6 +130,18 @@
130130
description:
131131
- Route map configuration.
132132
elements: dict
133+
suboptions:
134+
name:
135+
type: str
136+
description:
137+
- Name of the route map.
138+
direction:
139+
type: str
140+
description:
141+
- Direction for the route map.
142+
choices:
143+
- in
144+
- out
133145
connectTimer:
134146
type: int
135147
description:

plugins/modules/ospf6interface.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@
2626
options:
2727
state:
2828
type: str
29-
choices: ["present", "unset"]
29+
choices: ["present"]
3030
default: present
3131
description:
3232
- The state of the resource on the NetScaler ADC node.
3333
- When C(present), the resource will be added or updated.
34-
- When C(unset), the resource will be unset.
3534
3635
areaId:
3736
type: int

plugins/modules/routemap.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,12 @@
2626
options:
2727
state:
2828
type: str
29-
choices: ["present", "absent", "unset", "get"]
29+
choices: ["present", "absent"]
3030
default: present
3131
description:
3232
- The state of the resource on the NetScaler ADC node.
3333
- When C(present), the resource will be added or updated.
3434
- When C(absent), the resource will be deleted.
35-
- When C(unset), the resource will be unset.
36-
- When C(get), retrieve the resource.
3735
- When C(delete), delete the resource.
3836
3937
name:
@@ -85,7 +83,7 @@
8583
8684
matchRouteType:
8785
type: str
88-
choices: ["type-1", "type-2"]
86+
choices: []
8987
description:
9088
- Match OSPF external routes of type 1 or type 2 metrics.
9189
@@ -116,7 +114,7 @@
116114
117115
setMetricType:
118116
type: str
119-
choices: ["type-1", "type-2"]
117+
choices: []
120118
description:
121119
- Set type of metric for destination routing protocol. OSPF external type 1 metric or OSPF external type 2 metric.
122120

0 commit comments

Comments
 (0)