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

[Peering] GA peering #3137

Merged
merged 1 commit into from
Mar 11, 2021
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
3 changes: 3 additions & 0 deletions src/peering/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Release History
===============
0.2.1
++++++
* GA.

0.2.0
++++++
Expand Down
1 change: 0 additions & 1 deletion src/peering/azext_peering/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"azext.isExperimental": true,
"azext.minCliCoreVersion": "2.3.1"
}
21 changes: 8 additions & 13 deletions src/peering/azext_peering/generated/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ def load_command_table(self, _):
operations_tmpl='azext_peering.vendored_sdks.peering.operations._legacy_peering_operations#LegacyPeeringOperati'
'ons.{}',
client_factory=cf_legacy_peering)
with self.command_group('peering legacy', peering_legacy_peering, client_factory=cf_legacy_peering,
is_experimental=True) as g:
with self.command_group('peering legacy', peering_legacy_peering, client_factory=cf_legacy_peering) as g:
g.custom_command('list', 'peering_legacy_list')

from azext_peering.generated._client_factory import cf_peer_asn
peering_peer_asn = CliCommandType(
operations_tmpl='azext_peering.vendored_sdks.peering.operations._peer_asn_operations#PeerAsnOperations.{}',
client_factory=cf_peer_asn)
with self.command_group('peering asn', peering_peer_asn, client_factory=cf_peer_asn, is_experimental=True) as g:
with self.command_group('peering asn', peering_peer_asn, client_factory=cf_peer_asn) as g:
g.custom_command('list', 'peering_asn_list')
g.custom_show_command('show', 'peering_asn_show')
g.custom_command('create', 'peering_asn_create')
Expand All @@ -38,17 +37,15 @@ def load_command_table(self, _):
operations_tmpl='azext_peering.vendored_sdks.peering.operations._peering_location_operations#PeeringLocationOpe'
'rations.{}',
client_factory=cf_peering_location)
with self.command_group('peering location', peering_peering_location, client_factory=cf_peering_location,
is_experimental=True) as g:
with self.command_group('peering location', peering_peering_location, client_factory=cf_peering_location) as g:
g.custom_command('list', 'peering_location_list')

from azext_peering.generated._client_factory import cf_registered_asn
peering_registered_asn = CliCommandType(
operations_tmpl='azext_peering.vendored_sdks.peering.operations._registered_asn_operations#RegisteredAsnOperati'
'ons.{}',
client_factory=cf_registered_asn)
with self.command_group('peering registered-asn', peering_registered_asn, client_factory=cf_registered_asn,
is_experimental=True) as g:
with self.command_group('peering registered-asn', peering_registered_asn, client_factory=cf_registered_asn) as g:
g.custom_command('list', 'peering_registered_asn_list')
g.custom_show_command('show', 'peering_registered_asn_show')
g.custom_command('create', 'peering_registered_asn_create')
Expand All @@ -61,7 +58,7 @@ def load_command_table(self, _):
'perations.{}',
client_factory=cf_registered_prefix)
with self.command_group('peering registered-prefix', peering_registered_prefix,
client_factory=cf_registered_prefix, is_experimental=True) as g:
client_factory=cf_registered_prefix) as g:
g.custom_command('list', 'peering_registered_prefix_list')
g.custom_show_command('show', 'peering_registered_prefix_show')
g.custom_command('create', 'peering_registered_prefix_create')
Expand All @@ -72,7 +69,7 @@ def load_command_table(self, _):
peering_peering = CliCommandType(
operations_tmpl='azext_peering.vendored_sdks.peering.operations._peering_operations#PeeringOperations.{}',
client_factory=cf_peering)
with self.command_group('peering peering', peering_peering, client_factory=cf_peering, is_experimental=True) as g:
with self.command_group('peering peering', peering_peering, client_factory=cf_peering) as g:
g.custom_command('list', 'peering_peering_list')
g.custom_show_command('show', 'peering_peering_show')
g.custom_command('create', 'peering_peering_create')
Expand All @@ -84,8 +81,7 @@ def load_command_table(self, _):
operations_tmpl='azext_peering.vendored_sdks.peering.operations._received_route_operations#ReceivedRouteOperati'
'ons.{}',
client_factory=cf_received_route)
with self.command_group('peering received-route', peering_received_route, client_factory=cf_received_route,
is_experimental=True) as g:
with self.command_group('peering received-route', peering_received_route, client_factory=cf_received_route) as g:
g.custom_command('list', 'peering_received_route_list')

from azext_peering.generated._client_factory import cf_peering_service_country
Expand Down Expand Up @@ -131,8 +127,7 @@ def load_command_table(self, _):
operations_tmpl='azext_peering.vendored_sdks.peering.operations._peering_service_operations#PeeringServiceOpera'
'tions.{}',
client_factory=cf_peering_service)
with self.command_group('peering service', peering_peering_service, client_factory=cf_peering_service,
is_experimental=True) as g:
with self.command_group('peering service', peering_peering_service, client_factory=cf_peering_service) as g:
g.custom_command('list', 'peering_service_list')
g.custom_show_command('show', 'peering_service_show')
g.custom_command('create', 'peering_service_create')
Expand Down
2 changes: 1 addition & 1 deletion src/peering/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '0.2.0'
VERSION = '0.2.1'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down