mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 09:39:58 -05:00
88 lines
2.8 KiB
Python
88 lines
2.8 KiB
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
"""
|
||
|
* *******************************************************
|
||
|
* Copyright (c) VMware, Inc. 2019. All Rights Reserved.
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
* *******************************************************
|
||
|
*
|
||
|
* DISCLAIMER. THIS PROGRAM IS PROVIDED TO YOU "AS IS" WITHOUT
|
||
|
* WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER ORAL OR WRITTEN,
|
||
|
* EXPRESS OR IMPLIED. THE AUTHOR SPECIFICALLY DISCLAIMS ANY IMPLIED
|
||
|
* WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,
|
||
|
* NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
"""
|
||
|
|
||
|
__author__ = 'VMware, Inc'
|
||
|
__vcenter_version__ = 'VMware Cloud on AWS'
|
||
|
|
||
|
import argparse
|
||
|
import random
|
||
|
|
||
|
import requests
|
||
|
from com.vmware.nsx_policy.infra_client import Domains
|
||
|
from com.vmware.nsx_policy.model_client import (Expression, Group,
|
||
|
IPAddressExpression)
|
||
|
from com.vmware.nsx_policy_client_for_vmc import \
|
||
|
create_nsx_policy_client_for_vmc
|
||
|
from com.vmware.vapi.std.errors_client import NotFound
|
||
|
from vmware.vapi.bindings.struct import PrettyPrinter
|
||
|
from vmware.vapi.lib import connect
|
||
|
from vmware.vapi.security.user_password import \
|
||
|
create_user_password_security_context
|
||
|
from vmware.vapi.stdlib.client.factories import StubConfigurationFactory
|
||
|
|
||
|
"""
|
||
|
Delete a NSX-T Group on MGW or CGW
|
||
|
|
||
|
Sample Prerequisites:
|
||
|
- SDDC deployed in VMware Cloud on AWS
|
||
|
- A NSX-T security group
|
||
|
"""
|
||
|
parser = argparse.ArgumentParser(
|
||
|
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
||
|
|
||
|
parser.add_argument('--refresh_token',
|
||
|
required=True,
|
||
|
help='Refresh token obtained from CSP')
|
||
|
|
||
|
parser.add_argument('--org_id',
|
||
|
required=True,
|
||
|
help='Orgization ID')
|
||
|
|
||
|
parser.add_argument('--sddc_id',
|
||
|
required=True,
|
||
|
help='Sddc ID')
|
||
|
|
||
|
parser.add_argument('--gateway_type',
|
||
|
default='mgw',
|
||
|
help='Gateway type. Either mgw or cgw')
|
||
|
|
||
|
parser.add_argument('--group_id',
|
||
|
help='ID of the group to be deleted')
|
||
|
|
||
|
args = parser.parse_args()
|
||
|
|
||
|
gateway_type = args.gateway_type.lower()
|
||
|
|
||
|
nsx_client = create_nsx_policy_client_for_vmc(
|
||
|
refresh_token=args.refresh_token,
|
||
|
org_id=args.org_id,
|
||
|
sddc_id=args.sddc_id)
|
||
|
|
||
|
try:
|
||
|
security_group = nsx_client.infra.domains.Groups.get(gateway_type, args.group_id)
|
||
|
except NotFound:
|
||
|
raise ValueError('Security group "{}" not found'.format(args.group_id))
|
||
|
|
||
|
print('Deleting the NSX-T security group "{}"\n'.format(args.group_id))
|
||
|
|
||
|
nsx_client.infra.domains.Groups.delete(gateway_type, args.group_id)
|
||
|
|
||
|
groups = nsx_client.infra.domains.Groups.list(gateway_type).results
|
||
|
|
||
|
if any(g.id == args.group_id for g in groups):
|
||
|
raise Exception('Failed to delete the security group')
|
||
|
|
||
|
print('Successfully deleted the security group\n')
|