partnercenter/azext_partnercenter/operations/marketplace_offer/commands.py (11 lines of code) (raw):

# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long from azure.cli.core.commands import CliCommandType from azext_partnercenter._client_factory import cf_offers from ._format import list_output_format def load_command_table(commands_loader, _): custom_command_type = CliCommandType(operations_tmpl='azext_partnercenter.operations.marketplace_offer.custom#{}', client_factory=cf_offers) with commands_loader.command_group('partnercenter marketplace offer', custom_command_type=custom_command_type, is_preview=True) as g: g.custom_command('create', 'create_offer', supports_no_wait=True) g.custom_show_command('show', 'get_offer') g.custom_command('list', 'list_offer', table_transformer=list_output_format) g.custom_command('delete', 'delete_offer', confirmation=True, supports_no_wait=True, table_transformer=None) # support supports_no_wait=True where we can pass to client and poll the command status or not g.custom_command('publish', 'publish_offer')