Skip to content

Bug fixes for sddc_crud.py #170

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

Merged
merged 2 commits into from
Jul 22, 2019
Merged
Show file tree
Hide file tree
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
48 changes: 31 additions & 17 deletions samples/vmc/sddc/sddc_crud.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""
* *******************************************************
* Copyright (c) VMware, Inc. 2017. All Rights Reserved.
* Copyright (c) VMware, Inc. 2017-2019. All Rights Reserved.
* SPDX-License-Identifier: MIT
* *******************************************************
*
Expand Down Expand Up @@ -112,27 +112,33 @@ def create_sddc(self):
print('\n# Example: Create a SDDC ({}) in org {}:'.format(
self.sddc_name, self.org_id))

account_id = self.vmc_client.orgs.account_link.ConnectedAccounts.get(
self.org_id)[0].id
account_linking_config = None

vpc_map = self.vmc_client.orgs.account_link.CompatibleSubnets.get(
org=self.org_id, linked_account_id=account_id).vpc_map
# Get connected accounts if any
account_ids = self.vmc_client.orgs.account_link.ConnectedAccounts.get(
self.org_id)

customer_subnet_id = self.get_subnet_id(vpc_map)
if not customer_subnet_id:
raise ValueError('No available subnet for region {}'.format(
self.region))
if len(account_ids) > 0:
account_id = account_ids[0].id

vpc_map = self.vmc_client.orgs.account_link.CompatibleSubnets.get(
org=self.org_id, linked_account_id=account_id).vpc_map

customer_subnet_id = self.get_subnet_id(vpc_map)
if not customer_subnet_id:
raise ValueError('No available subnet for region {}'.format(
self.region))

account_linking_config = AccountLinkSddcConfig(
customer_subnet_ids=[customer_subnet_id],
connected_account_id=account_id)

sddc_config = AwsSddcConfig(
region=self.region,
name=self.sddc_name,
account_link_sddc_config=[
AccountLinkSddcConfig(
customer_subnet_ids=[customer_subnet_id],
connected_account_id=account_id)
],
account_link_sddc_config=[account_linking_config] if account_linking_config else None,
provider=os.environ.get('VMC_PROVIDER', SddcConfig.PROVIDER_AWS),
num_hosts=1,
num_hosts=4,
deployment_type=SddcConfig.DEPLOYMENT_TYPE_SINGLEAZ)

try:
Expand All @@ -155,6 +161,15 @@ def create_sddc(self):
self.print_output([sddc])

def delete_sddc(self):
# Get SDDC ID by name
sddcs = self.vmc_client.orgs.Sddcs.list(self.org_id)
for sddc in sddcs:
if sddc.name == self.sddc_name:
self.sddc_id = sddc.id
break
else:
raise ValueError('Cannot find sddc "{}"'.format(sddc_name))

print('\n# Example: Delete SDDC {} from org {}'.format(
self.sddc_id, self.org_id))

Expand Down Expand Up @@ -186,8 +201,7 @@ def list_sddc(self):

def print_output(self, sddcs):
for sddc in sddcs:
print('ID: {}, Name: {}, AWS Region: {}'.format(
sddc.id, sddc.name, sddc.resource_config.region))
print('ID: {}, Name: {}'.format(sddc.id, sddc.name))

def get_subnet_id(self, vpc_map):
for v in vpc_map.values():
Expand Down
67 changes: 67 additions & 0 deletions samples/vmc/tasks/list_tasks_stg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
"""
* *******************************************************
* 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.'

import argparse

from com.vmware.vmc.model_client import Task
from vmware.vapi.vmc.client import create_vmc_client

"""
Demonstrates how to list tasks with given status

Sample Prerequisites:
- VMware Cloud on AWS console API access
"""

accepted = [Task.STATUS_STARTED, Task.STATUS_CANCELING, Task.STATUS_FINISHED,
Task.STATUS_FAILED, Task.STATUS_CANCELED]

parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)

parser.add_argument('--refresh-token',
required=True,
help='VMware Cloud API refresh token')

parser.add_argument('--org-id',
required=True,
help='Organization identifier.')

parser.add_argument('--task-status',
help='Task status to filter. Possible values are: {} \
Show all tasks if no value is passed'.format(accepted))

args = parser.parse_args()

vmc_client = create_vmc_client(args.refresh_token)

tasks = []

if args.task_status:
status = args.task_status.upper()

if status not in accepted:
raise ValueError('Status "{}" is invalid, accept values are {}'.
format(args.task_status, accepted))

tasks = vmc_client.orgs.Tasks.list(
org=args.org_id, filter="(status eq '{}')".format(status))

print('# List all "{}" tasks:\n'.format(status))
else:
tasks = vmc_client.orgs.Tasks.list(org=args.org_id)
print('# List all tasks:\n')

for task in tasks:
print('{}\n'.format(task))