-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for "az sig list-shared" command
- Loading branch information
Showing
13 changed files
with
835 additions
and
744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
204 changes: 204 additions & 0 deletions
204
src/azure-cli/azure/cli/command_modules/vm/aaz/latest/sig/_list_shared.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# | ||
# Code generated by aaz-dev-tools | ||
# -------------------------------------------------------------------------------------------- | ||
|
||
# pylint: skip-file | ||
# flake8: noqa | ||
|
||
from azure.cli.core.aaz import * | ||
|
||
|
||
@register_command( | ||
"sig list-shared", | ||
) | ||
class ListShared(AAZCommand): | ||
"""List all shared galleries shared directly to your subscription or tenant | ||
:example: List shared galleries shared directly to your subscription in a given location | ||
az sig list-shared --location myLocation | ||
:example: List shared galleries shared directly to your tenant in a given location | ||
az sig list-shared --location myLocation --shared-to tenant | ||
""" | ||
|
||
_aaz_info = { | ||
"version": "2023-07-03", | ||
"resources": [ | ||
["mgmt-plane", "/subscriptions/{}/providers/microsoft.compute/locations/{}/sharedgalleries", "2023-07-03"], | ||
] | ||
} | ||
|
||
AZ_SUPPORT_PAGINATION = True | ||
|
||
def _handler(self, command_args): | ||
super()._handler(command_args) | ||
return self.build_paging(self._execute_operations, self._output) | ||
|
||
_args_schema = None | ||
|
||
@classmethod | ||
def _build_arguments_schema(cls, *args, **kwargs): | ||
if cls._args_schema is not None: | ||
return cls._args_schema | ||
cls._args_schema = super()._build_arguments_schema(*args, **kwargs) | ||
|
||
# define Arg Group "" | ||
|
||
_args_schema = cls._args_schema | ||
_args_schema.location = AAZResourceLocationArg( | ||
required=True, | ||
) | ||
_args_schema.shared_to = AAZStrArg( | ||
options=["--shared-to"], | ||
help="The query parameter to decide what shared galleries to fetch when doing listing operations. If not specified, list by subscription id.", | ||
enum={"tenant": "tenant"}, | ||
) | ||
return cls._args_schema | ||
|
||
def _execute_operations(self): | ||
self.pre_operations() | ||
self.SharedGalleriesList(ctx=self.ctx)() | ||
self.post_operations() | ||
|
||
@register_callback | ||
def pre_operations(self): | ||
pass | ||
|
||
@register_callback | ||
def post_operations(self): | ||
pass | ||
|
||
def _output(self, *args, **kwargs): | ||
result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) | ||
next_link = self.deserialize_output(self.ctx.vars.instance.next_link) | ||
return result, next_link | ||
|
||
class SharedGalleriesList(AAZHttpOperation): | ||
CLIENT_TYPE = "MgmtClient" | ||
|
||
def __call__(self, *args, **kwargs): | ||
request = self.make_request() | ||
session = self.client.send_request(request=request, stream=False, **kwargs) | ||
if session.http_response.status_code in [200]: | ||
return self.on_200(session) | ||
|
||
return self.on_error(session.http_response) | ||
|
||
@property | ||
def url(self): | ||
return self.client.format_url( | ||
"/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries", | ||
**self.url_parameters | ||
) | ||
|
||
@property | ||
def method(self): | ||
return "GET" | ||
|
||
@property | ||
def error_format(self): | ||
return "ODataV4Format" | ||
|
||
@property | ||
def url_parameters(self): | ||
parameters = { | ||
**self.serialize_url_param( | ||
"location", self.ctx.args.location, | ||
required=True, | ||
), | ||
**self.serialize_url_param( | ||
"subscriptionId", self.ctx.subscription_id, | ||
required=True, | ||
), | ||
} | ||
return parameters | ||
|
||
@property | ||
def query_parameters(self): | ||
parameters = { | ||
**self.serialize_query_param( | ||
"sharedTo", self.ctx.args.shared_to, | ||
), | ||
**self.serialize_query_param( | ||
"api-version", "2023-07-03", | ||
required=True, | ||
), | ||
} | ||
return parameters | ||
|
||
@property | ||
def header_parameters(self): | ||
parameters = { | ||
**self.serialize_header_param( | ||
"Accept", "application/json", | ||
), | ||
} | ||
return parameters | ||
|
||
def on_200(self, session): | ||
data = self.deserialize_http_content(session) | ||
self.ctx.set_var( | ||
"instance", | ||
data, | ||
schema_builder=self._build_schema_on_200 | ||
) | ||
|
||
_schema_on_200 = None | ||
|
||
@classmethod | ||
def _build_schema_on_200(cls): | ||
if cls._schema_on_200 is not None: | ||
return cls._schema_on_200 | ||
|
||
cls._schema_on_200 = AAZObjectType() | ||
|
||
_schema_on_200 = cls._schema_on_200 | ||
_schema_on_200.next_link = AAZStrType( | ||
serialized_name="nextLink", | ||
) | ||
_schema_on_200.value = AAZListType( | ||
flags={"required": True}, | ||
) | ||
|
||
value = cls._schema_on_200.value | ||
value.Element = AAZObjectType() | ||
|
||
_element = cls._schema_on_200.value.Element | ||
_element.identifier = AAZObjectType( | ||
flags={"client_flatten": True}, | ||
) | ||
_element.location = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
_element.name = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
_element.properties = AAZObjectType( | ||
flags={"client_flatten": True}, | ||
) | ||
|
||
identifier = cls._schema_on_200.value.Element.identifier | ||
identifier.unique_id = AAZStrType( | ||
serialized_name="uniqueId", | ||
) | ||
|
||
properties = cls._schema_on_200.value.Element.properties | ||
properties.artifact_tags = AAZDictType( | ||
serialized_name="artifactTags", | ||
flags={"read_only": True}, | ||
) | ||
|
||
artifact_tags = cls._schema_on_200.value.Element.properties.artifact_tags | ||
artifact_tags.Element = AAZStrType() | ||
|
||
return cls._schema_on_200 | ||
|
||
|
||
class _ListSharedHelper: | ||
"""Helper class for ListShared""" | ||
|
||
|
||
__all__ = ["ListShared"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.