Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions plugins/modules/nsxt_policy_segment.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@
choices:
- UP
- DOWN
default: UP
advanced_config:
description: Advanced configuration for Segment.
type: dict
Expand Down Expand Up @@ -336,7 +335,6 @@
replication_mode:
description: Replication mode of the Segment
type: str
default: MTEP
choices:
- MTEP
- SOURCE
Expand Down Expand Up @@ -792,8 +790,7 @@ def get_resource_spec():
),
admin_state=dict(
type='str',
choices=['UP', 'DOWN'],
default='UP'
choices=['UP', 'DOWN']
),
advanced_config=dict(
required=False,
Expand Down Expand Up @@ -941,7 +938,6 @@ def get_resource_spec():
),
replication_mode=dict(
type='str',
default="MTEP",
choices=["MTEP", "SOURCE"]
),
site_id=dict(
Expand Down Expand Up @@ -1185,7 +1181,6 @@ def get_resource_spec():
admin_state=dict(
required=False,
type='str',
default='UP',
choices=['UP', 'DOWN']
),
attachment=dict(
Expand Down