Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3.2.0 find issue with nsxt 2.5.1 Rest API #479

Open
wants to merge 2 commits into
base: v3.2.0
Choose a base branch
from
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