forked from Azure/azure-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ARM]
az data-boundary
Add DataBoundary Cmdlets (Azure#29961)
- Loading branch information
1 parent
3a0ae3a
commit 8d82dce
Showing
14 changed files
with
869 additions
and
0 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
23 changes: 23 additions & 0 deletions
23
src/azure-cli/azure/cli/command_modules/resource/aaz/latest/data_boundary/__cmd_group.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,23 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# 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_group( | ||
"data-boundary", | ||
) | ||
class __CMDGroup(AAZCommandGroup): | ||
"""data boundary operations | ||
""" | ||
pass | ||
|
||
|
||
__all__ = ["__CMDGroup"] |
14 changes: 14 additions & 0 deletions
14
src/azure-cli/azure/cli/command_modules/resource/aaz/latest/data_boundary/__init__.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,14 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# 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 .__cmd_group import * | ||
from ._create import * | ||
from ._show import * | ||
from ._show_tenant import * |
224 changes: 224 additions & 0 deletions
224
src/azure-cli/azure/cli/command_modules/resource/aaz/latest/data_boundary/_create.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,224 @@ | ||
# -------------------------------------------------------------------------------------------- | ||
# 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( | ||
"data-boundary create", | ||
) | ||
class Create(AAZCommand): | ||
"""Create tenant to data boundary. | ||
:example: Opt-in to data boundary | ||
az data-boundary create --data-boundary EU --default default | ||
""" | ||
|
||
_aaz_info = { | ||
"version": "2024-08-01", | ||
"resources": [ | ||
["mgmt-plane", "/providers/microsoft.resources/databoundaries/{}", "2024-08-01"], | ||
] | ||
} | ||
|
||
def _handler(self, command_args): | ||
super()._handler(command_args) | ||
self._execute_operations() | ||
return 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.default = AAZStrArg( | ||
options=["--default"], | ||
help="Default string modeled as parameter for auto generation to work correctly.", | ||
required=True, | ||
enum={"default": "default"}, | ||
) | ||
|
||
# define Arg Group "Properties" | ||
|
||
_args_schema = cls._args_schema | ||
_args_schema.data_boundary = AAZStrArg( | ||
options=["--data-boundary"], | ||
arg_group="Properties", | ||
help="The data boundary definition.", | ||
enum={"EU": "EU", "Global": "Global", "NotDefined": "NotDefined"}, | ||
) | ||
return cls._args_schema | ||
|
||
def _execute_operations(self): | ||
self.pre_operations() | ||
self.DataBoundariesPut(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, client_flatten=True) | ||
return result | ||
|
||
class DataBoundariesPut(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, 201]: | ||
return self.on_200_201(session) | ||
|
||
return self.on_error(session.http_response) | ||
|
||
@property | ||
def url(self): | ||
return self.client.format_url( | ||
"/providers/Microsoft.Resources/dataBoundaries/{default}", | ||
**self.url_parameters | ||
) | ||
|
||
@property | ||
def method(self): | ||
return "PUT" | ||
|
||
@property | ||
def error_format(self): | ||
return "MgmtErrorFormat" | ||
|
||
@property | ||
def url_parameters(self): | ||
parameters = { | ||
**self.serialize_url_param( | ||
"default", self.ctx.args.default, | ||
required=True, | ||
), | ||
} | ||
return parameters | ||
|
||
@property | ||
def query_parameters(self): | ||
parameters = { | ||
**self.serialize_query_param( | ||
"api-version", "2024-08-01", | ||
required=True, | ||
), | ||
} | ||
return parameters | ||
|
||
@property | ||
def header_parameters(self): | ||
parameters = { | ||
**self.serialize_header_param( | ||
"Content-Type", "application/json", | ||
), | ||
**self.serialize_header_param( | ||
"Accept", "application/json", | ||
), | ||
} | ||
return parameters | ||
|
||
@property | ||
def content(self): | ||
_content_value, _builder = self.new_content_builder( | ||
self.ctx.args, | ||
typ=AAZObjectType, | ||
typ_kwargs={"flags": {"required": True, "client_flatten": True}} | ||
) | ||
_builder.set_prop("properties", AAZObjectType) | ||
|
||
properties = _builder.get(".properties") | ||
if properties is not None: | ||
properties.set_prop("dataBoundary", AAZStrType, ".data_boundary") | ||
|
||
return self.serialize_content(_content_value) | ||
|
||
def on_200_201(self, session): | ||
data = self.deserialize_http_content(session) | ||
self.ctx.set_var( | ||
"instance", | ||
data, | ||
schema_builder=self._build_schema_on_200_201 | ||
) | ||
|
||
_schema_on_200_201 = None | ||
|
||
@classmethod | ||
def _build_schema_on_200_201(cls): | ||
if cls._schema_on_200_201 is not None: | ||
return cls._schema_on_200_201 | ||
|
||
cls._schema_on_200_201 = AAZObjectType() | ||
|
||
_schema_on_200_201 = cls._schema_on_200_201 | ||
_schema_on_200_201.id = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
_schema_on_200_201.name = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
_schema_on_200_201.properties = AAZObjectType() | ||
_schema_on_200_201.system_data = AAZObjectType( | ||
serialized_name="systemData", | ||
flags={"read_only": True}, | ||
) | ||
_schema_on_200_201.type = AAZStrType( | ||
flags={"read_only": True}, | ||
) | ||
|
||
properties = cls._schema_on_200_201.properties | ||
properties.data_boundary = AAZStrType( | ||
serialized_name="dataBoundary", | ||
) | ||
properties.provisioning_state = AAZStrType( | ||
serialized_name="provisioningState", | ||
flags={"read_only": True}, | ||
) | ||
|
||
system_data = cls._schema_on_200_201.system_data | ||
system_data.created_at = AAZStrType( | ||
serialized_name="createdAt", | ||
) | ||
system_data.created_by = AAZStrType( | ||
serialized_name="createdBy", | ||
) | ||
system_data.created_by_type = AAZStrType( | ||
serialized_name="createdByType", | ||
) | ||
system_data.last_modified_at = AAZStrType( | ||
serialized_name="lastModifiedAt", | ||
) | ||
system_data.last_modified_by = AAZStrType( | ||
serialized_name="lastModifiedBy", | ||
) | ||
system_data.last_modified_by_type = AAZStrType( | ||
serialized_name="lastModifiedByType", | ||
) | ||
|
||
return cls._schema_on_200_201 | ||
|
||
|
||
class _CreateHelper: | ||
"""Helper class for Create""" | ||
|
||
|
||
__all__ = ["Create"] |
Oops, something went wrong.