-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Introduce App Resiliency & Dapr Component Resiliency #6967
Conversation
|
rule | cmd_name | rule_message | suggest_message |
---|---|---|---|
containerapp env dapr-component resiliency | sub group containerapp env dapr-component resiliency added |
||
containerapp resiliency | sub group containerapp resiliency added |
Hi @yash-nisar, |
Hi @yash-nisar, |
Thank you for your contribution! We will review the pull request and get back to you soon. |
d1c86b6
to
d7bdd77
Compare
src/containerapp/azext_containerapp/containerapp_resiliency_decorator.py
Show resolved
Hide resolved
src/containerapp/azext_containerapp/containerapp_resiliency_decorator.py
Outdated
Show resolved
Hide resolved
src/containerapp/azext_containerapp/containerapp_resiliency_decorator.py
Outdated
Show resolved
Hide resolved
src/containerapp/azext_containerapp/daprcomponent_resiliency_decorator.py
Outdated
Show resolved
Hide resolved
05a4495
to
c292705
Compare
Recommend title: |
src/containerapp/azext_containerapp/tests/latest/test_containerapp_dapr_resiliency.py
Outdated
Show resolved
Hide resolved
c292705
to
04c089a
Compare
c.argument('container_app_name', options_list=['--container-app-name'], help=f"The name of the Container App. A name must consist of lower case alphanumeric characters or '-', start with a letter, end with an alphanumeric character, cannot have '--', and must be less than {MAXIMUM_CONTAINER_APP_NAME_LENGTH} characters.") | ||
c.argument('name', name_type, help=f"The name of the Container App Resiliency Policy. A name must consist of lower case alphanumeric characters or '-', start with a letter, end with an alphanumeric character, cannot have '--', and must be less than {MAXIMUM_APP_RESILIENCY_NAME_LENGTH} characters.") | ||
c.argument('yaml', type=file_type, help='Path to a .yaml file with the configuration of a container app resiliency policy. All other parameters will be ignored.') | ||
c.argument('default', options_list=['--default'], help='Set recommended values of resiliency policies for a container app.') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about when customer do not input properties and we use recommended one by default?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I don't understand ?
b4f322f
to
874635b
Compare
src/containerapp/azext_containerapp/containerapp_resiliency_decorator.py
Show resolved
Hide resolved
src/containerapp/azext_containerapp/containerapp_resiliency_decorator.py
Show resolved
Hide resolved
src/containerapp/azext_containerapp/containerapp_resiliency_decorator.py
Show resolved
Hide resolved
@yash-nisar Please resolve the conflict and add description in |
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
f9b16fa
to
26ede94
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, @Juliehzl Could you help to review this when you have chance?
from azure.cli.core.commands import AzCliCommand | ||
from msrest.exceptions import DeserializationError | ||
|
||
from ._decorator_utils import load_yaml_file, create_deserializer, process_containerapp_resiliency_yaml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we use the create_deserializer function in core cli? Is there any difference? @Greedygre
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In fact they have no difference.
CircuitBreakerPolicy as CircuitBreakerPolicyModel, | ||
TcpConnectionPool as TcpConnectionPoolModel, | ||
HttpConnectionPool as HttpConnectionPoolModel) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it possible to combine and sort the import ?
argument_value = getattr(self, f"get_argument_{argument_name}")() | ||
if argument_value is not None and argument_value < 1: | ||
raise ValidationError(f"--{argument_name} must be greater than 0") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the arugment name is in format _ but for cli layout it should be -, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, I'll change it.
name=self.get_argument_name(), container_app_name=self.get_argument_container_app_name()) | ||
except: | ||
pass | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should only not founnd exception is passed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the small comments in next PR. Won't block the release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approved with comments. @yash-nisar please take a look at my comments and we can fix in next version
Please wait a moment for the error message refine. Yash is working on it. |
Signed-off-by: Yash Nisar <yashnisar@microsoft.com>
4b90514
to
950e855
Compare
* use `try_create_application_insights` in custom * create workspace * create workspace & AI * fix UT * fix UT * fix UT * Add UT * Add History and update version * use `try_create_application_insights` in custom * create workspace * create workspace & AI * fix UT * [containerapp] `az containerapp create/update`: Support --customized-keys and clientType in --bind for dev service (#6939) * add test and add clientType and customized keys * fix test * fix * fix test * add test for yaml * fix * add more tests * fix conflict * fix customizedKey for yaml * address comments * add more comments * add test cases * fix test * Update src/containerapp/azext_containerapp/_params.py Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com> * Update src/containerapp/azext_containerapp/_params.py Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com> --------- Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com> * Introduce App Resiliency & Dapr Component Resiliency (#6967) * Introduce App Resiliency & Dapr Component Resiliency Signed-off-by: Yash Nisar <yashnisar@microsoft.com> * Address comments and shorten cli flags Signed-off-by: Yash Nisar <yashnisar@microsoft.com> * Code cleanup and address review comments Signed-off-by: Yash Nisar <yashnisar@microsoft.com> * Fix param_name output errors Signed-off-by: Yash Nisar <yashnisar@microsoft.com> --------- Signed-off-by: Yash Nisar <yashnisar@microsoft.com> * [containerapp] Give a better error message when customer uses --artif… (#6983) * [containerapp] Give a better error message when customer uses --artifact with ACR Task * Clarify the error message * Minor update * [containerapp] Release version 0.3.44 (#6972) * [Release] Update index.json for extension [ containerapp ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=106681&view=results Last commit: 5214e29 * Update baremetalinstance version (#6975) * Update baremetalinstance version * Re adding v1.0.0 and updating correct sha * Re-record failing source-to-cloud patch tests (#6984) * [confcom] initial commit of katapolicygen (#6974) * initial commit of katapolicygen * only grab genpolicy from genpolicy tagged releases * fixing tests for pipeline * updating docs with more samples * getting rid of unused links in readme * [Release] Update index.json for extension [ confcom ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=107291&view=results Last commit: cdb3dc6 * Release 2.22.0 ml cli extension (#6992) * "Update index.json with ml cli wheel" * Remove duplicate * [Hilo] Onboard new extension. (#6926) * generate init. * Update test cases and recordings * Format code, * Update test * Update params * Update params. * Add info to CODEOWNER. Update help file. * Update param summary and help file. * Update params file. * Add service name. * Update three examples. * Update examples. * rename command group name. * Update a test case. * Update test * Update test records. * Add two examples. * Update examples and add readme file. * Update examples. * Update a example * Remove create_flink_job_property command. * Remove flink-job-property command help and params. --------- Co-authored-by: v-yuchenli <v-yuchenli@microsoft.com> * [Release] Update index.json for extension [ hdinsightonaks ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=107396&view=results Last commit: 4e30684 * [confcom] taking out print statement (#6994) * taking out print statement * updating docs for new version * [Release] Update index.json for extension [ confcom ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=107772&view=results Last commit: a00ea10 * chore(arcdata): version bump to 1.5.7 (#6991) * Arc Appliance CLI November Release (#7000) Co-authored-by: Sai Sankar Gochhayat <sgochhayat@microsoft.com> * [az fleet] updated help examples (#6995) * updated fleet help text * bumped version * help text fix * white space * More help text updates. * fleet list example +1 * lint * test recording update * bug fix: return response instead of exception * updated version notes * lint fixes --------- Co-authored-by: pdaru <pdaru@microsoft.com> * [Release] Update index.json for extension [ fleet ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=108315&view=results Last commit: 54c84f1 * Updating examples and SKU description for Elastic (#7002) * Updating examples and SKU description for Elastic * Updating VERSIOn in setup.py * [Release] Update index.json for extension [ elastic ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=108437&view=results Last commit: d7e57d8 * Arc Appliance CLI: 1.0.1 [November Release] [with package bump] (#7003) * Arc Appliance CLI November Release * Updated whl for ArcAppliance Nov drop --------- Co-authored-by: Sai Sankar Gochhayat <sgochhayat@microsoft.com> * {AKS} 'az aks nodepool update': Update enum for --os-sku to match allowed values. (#6999) * fix UT * fix UT * Add UT * Add History and update version * {AKS} Vendor new SDK and bump API version to 2023-10-02-preview (#7001) * update SDK * update recordings * update API version * update history * Adds IoT Operations extension v0.1.0b2 (#7008) * [Bastion] adding rdp file to temp location and adding auth-type for rdp (#7006) * adding rdp file to temp location and adding auth-type for rdp * fixing some pylint issues * fixing some pylint issues * [Release] Update index.json for extension [ bastion ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=109154&view=results Last commit: 1d9de52 * {CI} Update policy rules (#7009) * Update resourceManagement.yml * Update resourceManagement.yml * {CI} Update pipeline to use Python 3.11 (#7010) * Fix param name fix for disk override (#6998) * [Release] Update index.json for extension [ connectedvmware ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=109664&view=results Last commit: 7ebe379 * {AKS} az aks update: Remove outbound limit in update description (#7014) * {AKS} `az aks update`: force `--network-policy=cilium` whenever `--network-dataplane=cilium` (#7011) * CLI extension for AzureLargeInstance (#6858) * WIP, changed azurelargeinstance to large-instance but commands not working anymore * Added readme and changed command name to large-instance, large-storage-instance * [Release] Update index.json for extension [ azurelargeinstance ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=110005&view=results Last commit: 00a0303 * [Bastion] add auth type password for rdp and fix line formatting issue (#7023) * add auth type password for rdp and fix line formatting issue * bump version * lint * add warning message * lint fix * [Release] Update index.json for extension [ bastion ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=110392&view=results Last commit: a9c1aca * [AKS] Fix for app routing CLI (#6968) * [Release] Update index.json for extension [ aks-preview ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=111118&view=results Last commit: 252de21 * [containerapp] `az containerapp up`: support create or update containerapp on connected env (#7004) * [ContainerApp] Cloud Build Bugfix - 500 Internal Server Error (Wrong env selected to create builder) (#7024) * [Vm-repair] Fix in az vm repair run --preview parameter (#6973) * [Release] Update index.json for extension [ vm-repair ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=111789&view=results Last commit: 3f54159 * bump version 0.3.45 (#7039) * [Release] Update index.json for extension [ containerapp ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=111849&view=results Last commit: 13932e4 * APICenter Extension Initial Release (#6918) * create extension, update examples, remove import/export commands for api center * [Release] Update index.json for extension [ apic-extension ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=111909&view=results Last commit: 33bbf02 * [StreamAnalytics] Remove Experimental (#6796) * [Release] Update index.json for extension [ stream-analytics ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112209&view=results Last commit: abf377d * Connectedk8s - RBAC: Add "arc "mode in Guard for using OBO service and deprecate --app-id & --app-secret params (#6675) * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112214&view=results Last commit: a3c96db * removing preview and fixing issue with aad (#7042) * [Release] Update index.json for extension [ bastion ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112220&view=results Last commit: 8511b68 * [Containerapp] `az containerapp update`: Fix issue for --min-replicas is not set when the value is 0 (#7046) * revert connectedk8s 1.5.5 (#7049) * [Containerapp] `az containerapp create`: Fix BadRequest Error about clientType with --bind (#7045) * Revert "Connectedk8s - RBAC: Add "arc "mode in Guard for using OBO service and deprecate --app-id & --app-secret params" (#7048) * Revert "Connectedk8s - RBAC: Add "arc "mode in Guard for using OBO service and deprecate --app-id & --app-secret params (#6675)" This reverts commit a3c96db. * Update setup.py * Stack-hci-vm 0.1.8 (#7052) * Stack-hci-vm 0.1.8 * Update project url * bump version and revert change in scale rule name (#7053) * [Release] Update index.json for extension [ containerapp ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112395&view=results Last commit: 2c44907 * {AKS} az aks stop: add warning when private link cluster is stopped (#7019) * [Release] Update index.json for extension [ aks-preview ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112548&view=results Last commit: 93fee25 * Include azure storage library in vendored_sdks (#6909) * [Release] Update index.json for extension [ aosm ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112572&view=results Last commit: 57320b1 * {Service Connector}: AAD rebranding and fix sql connection (#7041) * prompt for updating sql user * update version * lint * update * update help * update * [Release] Update index.json for extension [ serviceconnector-passwordless ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112613&view=results Last commit: 3fdc841 * Adding 0.1.2 version of akshybrid cli to fix kubernetes dependency issue (#7051) * Adding 0.1.2 version of akshybrid cli to fix kubernetes dependency issue * Fixed the extension index * Added the whl file for 1.0.0 version of aksarc cli (renamed from akshybrid) (#7043) * Added the whl file for 1.0.0 version of aksarc cli * Removed isExperimental and isPreview flags * [Logic] `az logic workflow`: Add new command group `identity` to support managing identity (#7029) * [Release] Update index.json for extension [ logic ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112695&view=results Last commit: 8cf7a07 * `az vmware private-cloud list-admin-credentials` bugfix (#7034) * Fix az vmware private-cloud list-admin-credentials not returning nsxtPassword and vcenterPassword * unit tests * [Release] Update index.json for extension [ vmware ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112935&view=results Last commit: 03f23d6 * [Spring] API Portal try out & SCG response cache (#6988) * [Release] Update index.json for extension [ spring ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112954&view=results Last commit: 533e873 * Update response format for aks mesh get upgrades and revisions commands (#7033) * [Quota] Add new commands `az quota request list/show` to support managing quota request (#7005) * quota * update test * additional properties * Update __init__.py * [Release] Update index.json for extension [ quota ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=113223&view=results Last commit: b2fbc2a * Change unversioned image aliases to corresponding URN (#6889) * change removed aliases in test to corresponding urn * revert updates in `scheduled-query` * revert updates in `automanage`, `connection-monitor-preview` * revert updates in `image-gallery` * revert updates in `aem` * fix lookup for custom locations rp sp to use appId instead of displayName (#6982) * Adds IoT Ops extension v0.2.0b1 (#7066) * [az vm repair] Win-run-driver script fix (#7061) * Pk5/fix feature flag bug (#7064) * Remove feature flag which is no longer required * Update changelog and version --------- Co-authored-by: Patryk Kulik <patrykkulik@microsoft.com> Co-authored-by: Andy Churchard <andy.churchard@metaswitch.com> * {Containerapp} Set test region default to northcentralusstage (#7058) * test * rerun test in test_containerapp_scenario.py * rerun tests * fix test for arc * handle storage account related tests * fix * fix hard code of location * format location before compare * format location * import * [Release] Update index.json for extension [ vm-repair ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114056&view=results Last commit: 3877c87 * Arc Appliance CLI 1.0.2 December Release (#7072) * Added ArcAppliance december release * Remove 0.2.31, 0.2.32, 0.2.33 from index --------- Co-authored-by: Sai Sankar Gochhayat <sgochhayat@microsoft.com> * Connectedk8s - RBAC: Add "arc "mode in Guard for using OBO service and deprecate --app-id & --app-secret params (#7057) * [k8s-extension] Update extension CLI to v1.5.3 (#7071) * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114322&view=results Last commit: fbdae29 * {Attestation} `az attestation signer/policy`: Bump API version from 2022-10-01 to 2022-08-01 (#7059) * update * update * update * update * update * update * update * update * Update azext_metadata.json * update * update * Update custom.py * update * update * update * update * update * Update src/attestation/azext_attestation/aaz/latest/__init__.py * update * update --------- Co-authored-by: kai ru <69238381+kairu-ms@users.noreply.github.com> * [Release] Update index.json for extension [ attestation ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114340&view=results Last commit: 4a69523 * [connectedmachine] release preview version 2023-10-03 (#7032) * [Release] Update index.json for extension [ connectedmachine ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114440&view=results Last commit: a921d21 * [Release] Update index.json for extension [ k8s-extension ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114632&view=results Last commit: 984b92d * chore(arcdata): version bump to 1.5.8 (#7076) * Add IoT Extension v0.23.1 (#7078) * feature: allow to read output for failed jobs (#7067) * feature: allow to read output for failed jobs * chore: removing unnecessary whitespaces * fix: linting errors * chore: addressing comments + pylint fixes * chore: addressed PR comments * chore: added SAS token obfuscation step to Run.ps1 * {CI} Fix static analysis (#6509) * Update azure-pipelines.yml * Update azure-pipelines.yml * Update azure-pipelines.yml * Update azure-pipelines.yml * Update azure-pipelines.yml * update * Empty * Update azure-pipelines.yml * Update azdev_setup.yml * Update azure-pipelines.yml * Update azure-pipelines.yml * Empty * update * modify containerapp * update * Update azdev_style_check.py * Update azdev_style_check.py * Update azdev_style_check.py * update * update * Delete azdev_style_check.py * Update test_source.py * Update azdev_linter_style.py * Update __init__.py * todo * update * update * Update __init__.py * Update azure-pipelines.yml * update * update * Update azdev_linter_style.py * update * {CI} Regenerating breaking change report with only_break=True to control length within 65535 (#7081) * chore: releasing az quantum v0.20.0 (#7080) * [Release] Update index.json for extension [ quantum ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=115465&view=results Last commit: 50a6cf9 * Upgrade Helm for connectedk8s (#6915) * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=115498&view=results Last commit: ddc80e1 * [az fleet] Minor style & linter updates to fix checks. (#7092) * Style & Linter updates. * Updated history.rst * Fixes for pipeline detected style issues. * Linter fix from pipeline results. * Update src/fleet/azext_fleet/_completers.py Co-authored-by: Jim Minter <jim-minter@users.noreply.github.com> * Trying raise * line break --------- Co-authored-by: Jim Minter <jim-minter@users.noreply.github.com> * [Release] Update index.json for extension [ fleet ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=116395&view=results Last commit: f33c6cb * Mircosoft.NetworkCloud Update cli-ext (#7015) * update test and example bmm/bmckeyset cli * Added support to remove the SSH keys on the backend * update cli-ext * revert the advertise empty values --------- Co-authored-by: Mike Pham <toanpham@microsoft.com> * [Release] Update index.json for extension [ networkcloud ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=116422&view=results Last commit: e12af1a * Support --self-contained-interactive-authoring-enabled in integration-runtime self-hosted create (#7084) * Support --self-contained-interactive-authoring-enabled in integration-runtime self-hosted create * fix * fix * fix * fix * change * fix * fix * fix * fix * fix * fix * fix * fix version * [Release] Update index.json for extension [ datafactory ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=116474&view=results Last commit: d88fdb0 * [AKS] Fix for `az aks approuting update` command (#7038) * Added 1.0.2 version of aksarc CLI extension (#7090) * Added 1.0.1 version of aksarc CLI extension * Testing the CI help fix * Fixing the param help * testing * Fixing the help param * Published the extension with help fix * {CI} Add statement for azdev style (#7099) * Update azure-pipelines.yml * Update azure-pipelines.yml * [confcom] updating docs to include new genpolicy info (#7093) * updating docs to include new genpolicy info * updating image hash * updating styling in test files * updating styling and a regex * adding back if statement * fixing syntax bug * {CI} Add statement for azdev style (#7101) * update * Update azdev_linter_style.py * Update azdev_linter_style.py * Update __init__.py * Create commands for 2023-07-01-preview Api version (#7055) * Properly handle k8s clusters of kind provisioned cluster for connectedk8s (#7103) * disabling enable/disable-feature for provisioned clusters * disable additional unsupported subcommands for provisioned clusters * update extension version * update error messages for disabled subcommands for provisioned clsuters * remove test output * address PR comments * address more PR comments * bump extension version number * upgrade api (#7082) * {CI} Update bot workflow (#7091) * update * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update AddIssueComment.yml * Update BlockPRMerge.yml * [Release] Update index.json for extension [ confcom ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117479&view=results Last commit: 4503d9d * [Release] Update index.json for extension [ nsp ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117484&view=results Last commit: 76d5f00 * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117492&view=results Last commit: a44482d * [Release] Update index.json for extension [ stack-hci ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117500&view=results Last commit: a3fb697 * Introduce additional bugfixes, bump CLI extension version (#7111) * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117603&view=results Last commit: 0c373bc * [devcenter] Update project environment type parameters to be required (#7100) * Update project env type parameters * Fix environment def example and update style * [Release] Update index.json for extension [ devcenter ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117619&view=results Last commit: 07ad6cd * Added extension support for NNF 4.2 release (#7095) * Added extension support for NNF 4.2 release * added whitespaces in around arithmetic operator * Added new line at end of file * Fixed flake8 linting issues * Removed test_managednetworkfabric.py file as it was not in use --------- Co-authored-by: aytripathi <aytripathi@DESKTOP-DN8JFGH> * [Release] Update index.json for extension [ managednetworkfabric ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117641&view=results Last commit: 1f408c3 * [Spring] Add new params to support auto binding (#7098) * [Release] Update index.json for extension [ spring ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117947&view=results Last commit: 57c4830 * [Spring] Support managed component log stream (#7021) * Add support for managed component log stream in Azure Spring Apps * Fix CI failure * [Application-insights] `az monitor app-insights component`: Add new command group `favorite` to support managing favorite (#7108) * app-insights * [Release] Update index.json for extension [ spring ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=118048&view=results Last commit: 057f80c * {AKS} Fix azdev style issues for tests (#7115) * {AKS} Replace Workload Identity related functions in aks-preview with azure-cli (#6987) * [Release] Update index.json for extension [ aks-preview ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=118256&view=results Last commit: 60fbf22 * {Monitor-control-service} Data collection migrate (#7120) * add generated code and adjust rule file json key * [Release] Update index.json for extension [ monitor-control-service ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=118275&view=results Last commit: 5bc032e --------- Signed-off-by: Yash Nisar <yashnisar@microsoft.com> Co-authored-by: xinyu pang <46143499+Greedygre@users.noreply.github.com> Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com> Co-authored-by: Yash Nisar <yashnisar@microsoft.com> Co-authored-by: daniv-msft <48293037+daniv-msft@users.noreply.github.com> Co-authored-by: Azure CLI Team <AzPyCLI@microsoft.com> Co-authored-by: Alexandra Avendaño <avenyen@gmail.com> Co-authored-by: Cormac McCarthy <corm@microsoft.com> Co-authored-by: Seth Hollandsworth <sethho@microsoft.com> Co-authored-by: Diondra <16376603+diondrapeck@users.noreply.github.com> Co-authored-by: yuc-Li <58678302+yuc-Li@users.noreply.github.com> Co-authored-by: v-yuchenli <v-yuchenli@microsoft.com> Co-authored-by: Azure ArcData Bot <122507266+arcdatabot@users.noreply.github.com> Co-authored-by: Saisankar Gochhayat <saisankargochhayat@gmail.com> Co-authored-by: Sai Sankar Gochhayat <sgochhayat@microsoft.com> Co-authored-by: Sean Hobbs <ealianis@outlook.com> Co-authored-by: pdaru <pdaru@microsoft.com> Co-authored-by: Pooja Shetty <85922721+poshett@users.noreply.github.com> Co-authored-by: Henry Beberman <henry.beberman@microsoft.com> Co-authored-by: FumingZhang <81607949+FumingZhang@users.noreply.github.com> Co-authored-by: Ryan K <ryan.k@outlook.com> Co-authored-by: aavalang <56377848+aavalang@users.noreply.github.com> Co-authored-by: ZelinWang <zelinwang@microsoft.com> Co-authored-by: Hang <bebound@gmail.com> Co-authored-by: Sayan Naskar <nascarsayan@gmail.com> Co-authored-by: Fan Shang Xiang <fanshangxiang@gmail.com> Co-authored-by: robogatikov <132703210+robogatikov@users.noreply.github.com> Co-authored-by: Ashwin Jeyaseelan <ajeyaseelan@microsoft.com> Co-authored-by: bosesuneha <123775811+bosesuneha@users.noreply.github.com> Co-authored-by: snehapar9 <108305436+snehapar9@users.noreply.github.com> Co-authored-by: Haider Agha <64601174+haagha@users.noreply.github.com> Co-authored-by: Arpi Shah <120400150+arpishahmsft@users.noreply.github.com> Co-authored-by: Zeng Taoxu <96050289+ZengTaoxu@users.noreply.github.com> Co-authored-by: Vineeth Thumma <vineeth-thumma@users.noreply.github.com> Co-authored-by: Arka <Arkanayan@users.noreply.github.com> Co-authored-by: Li Ma <mali_no2@hotmail.com> Co-authored-by: Cyclam <95434717+Cyclam@users.noreply.github.com> Co-authored-by: Xiaofan Zhou <81600993+xfz11@users.noreply.github.com> Co-authored-by: Hari Prasad <hariv97@gmail.com> Co-authored-by: Jing-song <v-jingszhang@microsoft.com> Co-authored-by: Jonathan He <jonathanhe@microsoft.com> Co-authored-by: Mason Chen <jiec@microsoft.com> Co-authored-by: deveshdama <87668846+deveshdama@users.noreply.github.com> Co-authored-by: Qinkai Wu <32201005+ReaNAiveD@users.noreply.github.com> Co-authored-by: Bryant <bryant@keystroke.cloud> Co-authored-by: Patryk Kulik <patrykkulik@microsoft.com> Co-authored-by: Andy Churchard <andy.churchard@metaswitch.com> Co-authored-by: Prashanth Koushik <pkoushik11@gmail.com> Co-authored-by: Bavneet Singh <33008256+bavneetsingh16@users.noreply.github.com> Co-authored-by: kai ru <69238381+kairu-ms@users.noreply.github.com> Co-authored-by: yaotongms <137821665+yaotongms@users.noreply.github.com> Co-authored-by: kikomiss <144282031+kikomiss@users.noreply.github.com> Co-authored-by: Kit <kit.nhl@gmail.com> Co-authored-by: Jim Minter <jim-minter@users.noreply.github.com> Co-authored-by: Mike Pham <90421725+MikePham0630@users.noreply.github.com> Co-authored-by: Mike Pham <toanpham@microsoft.com> Co-authored-by: Jingshu918 <138486531+Jingshu918@users.noreply.github.com> Co-authored-by: Kaushal Kumar <kaushal499@gmail.com> Co-authored-by: Simon Diesenreiter <sidiesen@microsoft.com> Co-authored-by: am-lim <55768281+am-lim@users.noreply.github.com> Co-authored-by: aytripathi <119933278+aytripathi@users.noreply.github.com> Co-authored-by: aytripathi <aytripathi@DESKTOP-DN8JFGH> Co-authored-by: Moary Chen <v-shilichen@microsoft.com> Co-authored-by: jiashun0011 <jiashunliu@microsoft.com> Co-authored-by: AllyW <AllyW@users.noreply.github.com>
* use `try_create_application_insights` in custom * create workspace * create workspace & AI * fix UT * fix UT * fix UT * Add UT * Add History and update version * use `try_create_application_insights` in custom * create workspace * create workspace & AI * fix UT * [containerapp] `az containerapp create/update`: Support --customized-keys and clientType in --bind for dev service (Azure#6939) * add test and add clientType and customized keys * fix test * fix * fix test * add test for yaml * fix * add more tests * fix conflict * fix customizedKey for yaml * address comments * add more comments * add test cases * fix test * Update src/containerapp/azext_containerapp/_params.py Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com> * Update src/containerapp/azext_containerapp/_params.py Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com> --------- Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com> * Introduce App Resiliency & Dapr Component Resiliency (Azure#6967) * Introduce App Resiliency & Dapr Component Resiliency Signed-off-by: Yash Nisar <yashnisar@microsoft.com> * Address comments and shorten cli flags Signed-off-by: Yash Nisar <yashnisar@microsoft.com> * Code cleanup and address review comments Signed-off-by: Yash Nisar <yashnisar@microsoft.com> * Fix param_name output errors Signed-off-by: Yash Nisar <yashnisar@microsoft.com> --------- Signed-off-by: Yash Nisar <yashnisar@microsoft.com> * [containerapp] Give a better error message when customer uses --artif… (Azure#6983) * [containerapp] Give a better error message when customer uses --artifact with ACR Task * Clarify the error message * Minor update * [containerapp] Release version 0.3.44 (Azure#6972) * [Release] Update index.json for extension [ containerapp ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=106681&view=results Last commit: Azure@5214e29 * Update baremetalinstance version (Azure#6975) * Update baremetalinstance version * Re adding v1.0.0 and updating correct sha * Re-record failing source-to-cloud patch tests (Azure#6984) * [confcom] initial commit of katapolicygen (Azure#6974) * initial commit of katapolicygen * only grab genpolicy from genpolicy tagged releases * fixing tests for pipeline * updating docs with more samples * getting rid of unused links in readme * [Release] Update index.json for extension [ confcom ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=107291&view=results Last commit: Azure@cdb3dc6 * Release 2.22.0 ml cli extension (Azure#6992) * "Update index.json with ml cli wheel" * Remove duplicate * [Hilo] Onboard new extension. (Azure#6926) * generate init. * Update test cases and recordings * Format code, * Update test * Update params * Update params. * Add info to CODEOWNER. Update help file. * Update param summary and help file. * Update params file. * Add service name. * Update three examples. * Update examples. * rename command group name. * Update a test case. * Update test * Update test records. * Add two examples. * Update examples and add readme file. * Update examples. * Update a example * Remove create_flink_job_property command. * Remove flink-job-property command help and params. --------- Co-authored-by: v-yuchenli <v-yuchenli@microsoft.com> * [Release] Update index.json for extension [ hdinsightonaks ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=107396&view=results Last commit: Azure@4e30684 * [confcom] taking out print statement (Azure#6994) * taking out print statement * updating docs for new version * [Release] Update index.json for extension [ confcom ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=107772&view=results Last commit: Azure@a00ea10 * chore(arcdata): version bump to 1.5.7 (Azure#6991) * Arc Appliance CLI November Release (Azure#7000) Co-authored-by: Sai Sankar Gochhayat <sgochhayat@microsoft.com> * [az fleet] updated help examples (Azure#6995) * updated fleet help text * bumped version * help text fix * white space * More help text updates. * fleet list example +1 * lint * test recording update * bug fix: return response instead of exception * updated version notes * lint fixes --------- Co-authored-by: pdaru <pdaru@microsoft.com> * [Release] Update index.json for extension [ fleet ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=108315&view=results Last commit: Azure@54c84f1 * Updating examples and SKU description for Elastic (Azure#7002) * Updating examples and SKU description for Elastic * Updating VERSIOn in setup.py * [Release] Update index.json for extension [ elastic ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=108437&view=results Last commit: Azure@d7e57d8 * Arc Appliance CLI: 1.0.1 [November Release] [with package bump] (Azure#7003) * Arc Appliance CLI November Release * Updated whl for ArcAppliance Nov drop --------- Co-authored-by: Sai Sankar Gochhayat <sgochhayat@microsoft.com> * {AKS} 'az aks nodepool update': Update enum for --os-sku to match allowed values. (Azure#6999) * fix UT * fix UT * Add UT * Add History and update version * {AKS} Vendor new SDK and bump API version to 2023-10-02-preview (Azure#7001) * update SDK * update recordings * update API version * update history * Adds IoT Operations extension v0.1.0b2 (Azure#7008) * [Bastion] adding rdp file to temp location and adding auth-type for rdp (Azure#7006) * adding rdp file to temp location and adding auth-type for rdp * fixing some pylint issues * fixing some pylint issues * [Release] Update index.json for extension [ bastion ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=109154&view=results Last commit: Azure@1d9de52 * {CI} Update policy rules (Azure#7009) * Update resourceManagement.yml * Update resourceManagement.yml * {CI} Update pipeline to use Python 3.11 (Azure#7010) * Fix param name fix for disk override (Azure#6998) * [Release] Update index.json for extension [ connectedvmware ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=109664&view=results Last commit: Azure@7ebe379 * {AKS} az aks update: Remove outbound limit in update description (Azure#7014) * {AKS} `az aks update`: force `--network-policy=cilium` whenever `--network-dataplane=cilium` (Azure#7011) * CLI extension for AzureLargeInstance (Azure#6858) * WIP, changed azurelargeinstance to large-instance but commands not working anymore * Added readme and changed command name to large-instance, large-storage-instance * [Release] Update index.json for extension [ azurelargeinstance ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=110005&view=results Last commit: Azure@00a0303 * [Bastion] add auth type password for rdp and fix line formatting issue (Azure#7023) * add auth type password for rdp and fix line formatting issue * bump version * lint * add warning message * lint fix * [Release] Update index.json for extension [ bastion ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=110392&view=results Last commit: Azure@a9c1aca * [AKS] Fix for app routing CLI (Azure#6968) * [Release] Update index.json for extension [ aks-preview ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=111118&view=results Last commit: Azure@252de21 * [containerapp] `az containerapp up`: support create or update containerapp on connected env (Azure#7004) * [ContainerApp] Cloud Build Bugfix - 500 Internal Server Error (Wrong env selected to create builder) (Azure#7024) * [Vm-repair] Fix in az vm repair run --preview parameter (Azure#6973) * [Release] Update index.json for extension [ vm-repair ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=111789&view=results Last commit: Azure@3f54159 * bump version 0.3.45 (Azure#7039) * [Release] Update index.json for extension [ containerapp ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=111849&view=results Last commit: Azure@13932e4 * APICenter Extension Initial Release (Azure#6918) * create extension, update examples, remove import/export commands for api center * [Release] Update index.json for extension [ apic-extension ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=111909&view=results Last commit: Azure@33bbf02 * [StreamAnalytics] Remove Experimental (Azure#6796) * [Release] Update index.json for extension [ stream-analytics ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112209&view=results Last commit: Azure@abf377d * Connectedk8s - RBAC: Add "arc "mode in Guard for using OBO service and deprecate --app-id & --app-secret params (Azure#6675) * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112214&view=results Last commit: Azure@a3c96db * removing preview and fixing issue with aad (Azure#7042) * [Release] Update index.json for extension [ bastion ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112220&view=results Last commit: Azure@8511b68 * [Containerapp] `az containerapp update`: Fix issue for --min-replicas is not set when the value is 0 (Azure#7046) * revert connectedk8s 1.5.5 (Azure#7049) * [Containerapp] `az containerapp create`: Fix BadRequest Error about clientType with --bind (Azure#7045) * Revert "Connectedk8s - RBAC: Add "arc "mode in Guard for using OBO service and deprecate --app-id & --app-secret params" (Azure#7048) * Revert "Connectedk8s - RBAC: Add "arc "mode in Guard for using OBO service and deprecate --app-id & --app-secret params (Azure#6675)" This reverts commit a3c96db. * Update setup.py * Stack-hci-vm 0.1.8 (Azure#7052) * Stack-hci-vm 0.1.8 * Update project url * bump version and revert change in scale rule name (Azure#7053) * [Release] Update index.json for extension [ containerapp ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112395&view=results Last commit: Azure@2c44907 * {AKS} az aks stop: add warning when private link cluster is stopped (Azure#7019) * [Release] Update index.json for extension [ aks-preview ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112548&view=results Last commit: Azure@93fee25 * Include azure storage library in vendored_sdks (Azure#6909) * [Release] Update index.json for extension [ aosm ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112572&view=results Last commit: Azure@57320b1 * {Service Connector}: AAD rebranding and fix sql connection (Azure#7041) * prompt for updating sql user * update version * lint * update * update help * update * [Release] Update index.json for extension [ serviceconnector-passwordless ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112613&view=results Last commit: Azure@3fdc841 * Adding 0.1.2 version of akshybrid cli to fix kubernetes dependency issue (Azure#7051) * Adding 0.1.2 version of akshybrid cli to fix kubernetes dependency issue * Fixed the extension index * Added the whl file for 1.0.0 version of aksarc cli (renamed from akshybrid) (Azure#7043) * Added the whl file for 1.0.0 version of aksarc cli * Removed isExperimental and isPreview flags * [Logic] `az logic workflow`: Add new command group `identity` to support managing identity (Azure#7029) * [Release] Update index.json for extension [ logic ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112695&view=results Last commit: Azure@8cf7a07 * `az vmware private-cloud list-admin-credentials` bugfix (Azure#7034) * Fix az vmware private-cloud list-admin-credentials not returning nsxtPassword and vcenterPassword * unit tests * [Release] Update index.json for extension [ vmware ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112935&view=results Last commit: Azure@03f23d6 * [Spring] API Portal try out & SCG response cache (Azure#6988) * [Release] Update index.json for extension [ spring ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=112954&view=results Last commit: Azure@533e873 * Update response format for aks mesh get upgrades and revisions commands (Azure#7033) * [Quota] Add new commands `az quota request list/show` to support managing quota request (Azure#7005) * quota * update test * additional properties * Update __init__.py * [Release] Update index.json for extension [ quota ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=113223&view=results Last commit: Azure@b2fbc2a * Change unversioned image aliases to corresponding URN (Azure#6889) * change removed aliases in test to corresponding urn * revert updates in `scheduled-query` * revert updates in `automanage`, `connection-monitor-preview` * revert updates in `image-gallery` * revert updates in `aem` * fix lookup for custom locations rp sp to use appId instead of displayName (Azure#6982) * Adds IoT Ops extension v0.2.0b1 (Azure#7066) * [az vm repair] Win-run-driver script fix (Azure#7061) * Pk5/fix feature flag bug (Azure#7064) * Remove feature flag which is no longer required * Update changelog and version --------- Co-authored-by: Patryk Kulik <patrykkulik@microsoft.com> Co-authored-by: Andy Churchard <andy.churchard@metaswitch.com> * {Containerapp} Set test region default to northcentralusstage (Azure#7058) * test * rerun test in test_containerapp_scenario.py * rerun tests * fix test for arc * handle storage account related tests * fix * fix hard code of location * format location before compare * format location * import * [Release] Update index.json for extension [ vm-repair ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114056&view=results Last commit: Azure@3877c87 * Arc Appliance CLI 1.0.2 December Release (Azure#7072) * Added ArcAppliance december release * Remove 0.2.31, 0.2.32, 0.2.33 from index --------- Co-authored-by: Sai Sankar Gochhayat <sgochhayat@microsoft.com> * Connectedk8s - RBAC: Add "arc "mode in Guard for using OBO service and deprecate --app-id & --app-secret params (Azure#7057) * [k8s-extension] Update extension CLI to v1.5.3 (Azure#7071) * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114322&view=results Last commit: Azure@fbdae29 * {Attestation} `az attestation signer/policy`: Bump API version from 2022-10-01 to 2022-08-01 (Azure#7059) * update * update * update * update * update * update * update * update * Update azext_metadata.json * update * update * Update custom.py * update * update * update * update * update * Update src/attestation/azext_attestation/aaz/latest/__init__.py * update * update --------- Co-authored-by: kai ru <69238381+kairu-ms@users.noreply.github.com> * [Release] Update index.json for extension [ attestation ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114340&view=results Last commit: Azure@4a69523 * [connectedmachine] release preview version 2023-10-03 (Azure#7032) * [Release] Update index.json for extension [ connectedmachine ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114440&view=results Last commit: Azure@a921d21 * [Release] Update index.json for extension [ k8s-extension ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=114632&view=results Last commit: Azure@984b92d * chore(arcdata): version bump to 1.5.8 (Azure#7076) * Add IoT Extension v0.23.1 (Azure#7078) * feature: allow to read output for failed jobs (Azure#7067) * feature: allow to read output for failed jobs * chore: removing unnecessary whitespaces * fix: linting errors * chore: addressing comments + pylint fixes * chore: addressed PR comments * chore: added SAS token obfuscation step to Run.ps1 * {CI} Fix static analysis (Azure#6509) * Update azure-pipelines.yml * Update azure-pipelines.yml * Update azure-pipelines.yml * Update azure-pipelines.yml * Update azure-pipelines.yml * update * Empty * Update azure-pipelines.yml * Update azdev_setup.yml * Update azure-pipelines.yml * Update azure-pipelines.yml * Empty * update * modify containerapp * update * Update azdev_style_check.py * Update azdev_style_check.py * Update azdev_style_check.py * update * update * Delete azdev_style_check.py * Update test_source.py * Update azdev_linter_style.py * Update __init__.py * todo * update * update * Update __init__.py * Update azure-pipelines.yml * update * update * Update azdev_linter_style.py * update * {CI} Regenerating breaking change report with only_break=True to control length within 65535 (Azure#7081) * chore: releasing az quantum v0.20.0 (Azure#7080) * [Release] Update index.json for extension [ quantum ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=115465&view=results Last commit: Azure@50a6cf9 * Upgrade Helm for connectedk8s (Azure#6915) * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=115498&view=results Last commit: Azure@ddc80e1 * [az fleet] Minor style & linter updates to fix checks. (Azure#7092) * Style & Linter updates. * Updated history.rst * Fixes for pipeline detected style issues. * Linter fix from pipeline results. * Update src/fleet/azext_fleet/_completers.py Co-authored-by: Jim Minter <jim-minter@users.noreply.github.com> * Trying raise * line break --------- Co-authored-by: Jim Minter <jim-minter@users.noreply.github.com> * [Release] Update index.json for extension [ fleet ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=116395&view=results Last commit: Azure@f33c6cb * Mircosoft.NetworkCloud Update cli-ext (Azure#7015) * update test and example bmm/bmckeyset cli * Added support to remove the SSH keys on the backend * update cli-ext * revert the advertise empty values --------- Co-authored-by: Mike Pham <toanpham@microsoft.com> * [Release] Update index.json for extension [ networkcloud ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=116422&view=results Last commit: Azure@e12af1a * Support --self-contained-interactive-authoring-enabled in integration-runtime self-hosted create (Azure#7084) * Support --self-contained-interactive-authoring-enabled in integration-runtime self-hosted create * fix * fix * fix * fix * change * fix * fix * fix * fix * fix * fix * fix * fix version * [Release] Update index.json for extension [ datafactory ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=116474&view=results Last commit: Azure@d88fdb0 * [AKS] Fix for `az aks approuting update` command (Azure#7038) * Added 1.0.2 version of aksarc CLI extension (Azure#7090) * Added 1.0.1 version of aksarc CLI extension * Testing the CI help fix * Fixing the param help * testing * Fixing the help param * Published the extension with help fix * {CI} Add statement for azdev style (Azure#7099) * Update azure-pipelines.yml * Update azure-pipelines.yml * [confcom] updating docs to include new genpolicy info (Azure#7093) * updating docs to include new genpolicy info * updating image hash * updating styling in test files * updating styling and a regex * adding back if statement * fixing syntax bug * {CI} Add statement for azdev style (Azure#7101) * update * Update azdev_linter_style.py * Update azdev_linter_style.py * Update __init__.py * Create commands for 2023-07-01-preview Api version (Azure#7055) * Properly handle k8s clusters of kind provisioned cluster for connectedk8s (Azure#7103) * disabling enable/disable-feature for provisioned clusters * disable additional unsupported subcommands for provisioned clusters * update extension version * update error messages for disabled subcommands for provisioned clsuters * remove test output * address PR comments * address more PR comments * bump extension version number * upgrade api (Azure#7082) * {CI} Update bot workflow (Azure#7091) * update * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update BlockPRMerge.yml * Update AddIssueComment.yml * Update BlockPRMerge.yml * [Release] Update index.json for extension [ confcom ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117479&view=results Last commit: Azure@4503d9d * [Release] Update index.json for extension [ nsp ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117484&view=results Last commit: Azure@76d5f00 * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117492&view=results Last commit: Azure@a44482d * [Release] Update index.json for extension [ stack-hci ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117500&view=results Last commit: Azure@a3fb697 * Introduce additional bugfixes, bump CLI extension version (Azure#7111) * [Release] Update index.json for extension [ connectedk8s ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117603&view=results Last commit: Azure@0c373bc * [devcenter] Update project environment type parameters to be required (Azure#7100) * Update project env type parameters * Fix environment def example and update style * [Release] Update index.json for extension [ devcenter ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117619&view=results Last commit: Azure@07ad6cd * Added extension support for NNF 4.2 release (Azure#7095) * Added extension support for NNF 4.2 release * added whitespaces in around arithmetic operator * Added new line at end of file * Fixed flake8 linting issues * Removed test_managednetworkfabric.py file as it was not in use --------- Co-authored-by: aytripathi <aytripathi@DESKTOP-DN8JFGH> * [Release] Update index.json for extension [ managednetworkfabric ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117641&view=results Last commit: Azure@1f408c3 * [Spring] Add new params to support auto binding (Azure#7098) * [Release] Update index.json for extension [ spring ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=117947&view=results Last commit: Azure@57c4830 * [Spring] Support managed component log stream (Azure#7021) * Add support for managed component log stream in Azure Spring Apps * Fix CI failure * [Application-insights] `az monitor app-insights component`: Add new command group `favorite` to support managing favorite (Azure#7108) * app-insights * [Release] Update index.json for extension [ spring ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=118048&view=results Last commit: Azure@057f80c * {AKS} Fix azdev style issues for tests (Azure#7115) * {AKS} Replace Workload Identity related functions in aks-preview with azure-cli (Azure#6987) * [Release] Update index.json for extension [ aks-preview ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=118256&view=results Last commit: Azure@60fbf22 * {Monitor-control-service} Data collection migrate (Azure#7120) * add generated code and adjust rule file json key * [Release] Update index.json for extension [ monitor-control-service ] Triggered by Azure CLI Extensions Release Pipeline - ADO_BUILD_URL: https://dev.azure.com/azclitools/internal/_build/results?buildId=118275&view=results Last commit: Azure@5bc032e --------- Signed-off-by: Yash Nisar <yashnisar@microsoft.com> Co-authored-by: xinyu pang <46143499+Greedygre@users.noreply.github.com> Co-authored-by: Xing Zhou <Zhou.Xing@microsoft.com> Co-authored-by: Yash Nisar <yashnisar@microsoft.com> Co-authored-by: daniv-msft <48293037+daniv-msft@users.noreply.github.com> Co-authored-by: Azure CLI Team <AzPyCLI@microsoft.com> Co-authored-by: Alexandra Avendaño <avenyen@gmail.com> Co-authored-by: Cormac McCarthy <corm@microsoft.com> Co-authored-by: Seth Hollandsworth <sethho@microsoft.com> Co-authored-by: Diondra <16376603+diondrapeck@users.noreply.github.com> Co-authored-by: yuc-Li <58678302+yuc-Li@users.noreply.github.com> Co-authored-by: v-yuchenli <v-yuchenli@microsoft.com> Co-authored-by: Azure ArcData Bot <122507266+arcdatabot@users.noreply.github.com> Co-authored-by: Saisankar Gochhayat <saisankargochhayat@gmail.com> Co-authored-by: Sai Sankar Gochhayat <sgochhayat@microsoft.com> Co-authored-by: Sean Hobbs <ealianis@outlook.com> Co-authored-by: pdaru <pdaru@microsoft.com> Co-authored-by: Pooja Shetty <85922721+poshett@users.noreply.github.com> Co-authored-by: Henry Beberman <henry.beberman@microsoft.com> Co-authored-by: FumingZhang <81607949+FumingZhang@users.noreply.github.com> Co-authored-by: Ryan K <ryan.k@outlook.com> Co-authored-by: aavalang <56377848+aavalang@users.noreply.github.com> Co-authored-by: ZelinWang <zelinwang@microsoft.com> Co-authored-by: Hang <bebound@gmail.com> Co-authored-by: Sayan Naskar <nascarsayan@gmail.com> Co-authored-by: Fan Shang Xiang <fanshangxiang@gmail.com> Co-authored-by: robogatikov <132703210+robogatikov@users.noreply.github.com> Co-authored-by: Ashwin Jeyaseelan <ajeyaseelan@microsoft.com> Co-authored-by: bosesuneha <123775811+bosesuneha@users.noreply.github.com> Co-authored-by: snehapar9 <108305436+snehapar9@users.noreply.github.com> Co-authored-by: Haider Agha <64601174+haagha@users.noreply.github.com> Co-authored-by: Arpi Shah <120400150+arpishahmsft@users.noreply.github.com> Co-authored-by: Zeng Taoxu <96050289+ZengTaoxu@users.noreply.github.com> Co-authored-by: Vineeth Thumma <vineeth-thumma@users.noreply.github.com> Co-authored-by: Arka <Arkanayan@users.noreply.github.com> Co-authored-by: Li Ma <mali_no2@hotmail.com> Co-authored-by: Cyclam <95434717+Cyclam@users.noreply.github.com> Co-authored-by: Xiaofan Zhou <81600993+xfz11@users.noreply.github.com> Co-authored-by: Hari Prasad <hariv97@gmail.com> Co-authored-by: Jing-song <v-jingszhang@microsoft.com> Co-authored-by: Jonathan He <jonathanhe@microsoft.com> Co-authored-by: Mason Chen <jiec@microsoft.com> Co-authored-by: deveshdama <87668846+deveshdama@users.noreply.github.com> Co-authored-by: Qinkai Wu <32201005+ReaNAiveD@users.noreply.github.com> Co-authored-by: Bryant <bryant@keystroke.cloud> Co-authored-by: Patryk Kulik <patrykkulik@microsoft.com> Co-authored-by: Andy Churchard <andy.churchard@metaswitch.com> Co-authored-by: Prashanth Koushik <pkoushik11@gmail.com> Co-authored-by: Bavneet Singh <33008256+bavneetsingh16@users.noreply.github.com> Co-authored-by: kai ru <69238381+kairu-ms@users.noreply.github.com> Co-authored-by: yaotongms <137821665+yaotongms@users.noreply.github.com> Co-authored-by: kikomiss <144282031+kikomiss@users.noreply.github.com> Co-authored-by: Kit <kit.nhl@gmail.com> Co-authored-by: Jim Minter <jim-minter@users.noreply.github.com> Co-authored-by: Mike Pham <90421725+MikePham0630@users.noreply.github.com> Co-authored-by: Mike Pham <toanpham@microsoft.com> Co-authored-by: Jingshu918 <138486531+Jingshu918@users.noreply.github.com> Co-authored-by: Kaushal Kumar <kaushal499@gmail.com> Co-authored-by: Simon Diesenreiter <sidiesen@microsoft.com> Co-authored-by: am-lim <55768281+am-lim@users.noreply.github.com> Co-authored-by: aytripathi <119933278+aytripathi@users.noreply.github.com> Co-authored-by: aytripathi <aytripathi@DESKTOP-DN8JFGH> Co-authored-by: Moary Chen <v-shilichen@microsoft.com> Co-authored-by: jiashun0011 <jiashunliu@microsoft.com> Co-authored-by: AllyW <AllyW@users.noreply.github.com>
This checklist is used to make sure that common guidelines for a pull request are followed.
Related command
General Guidelines
azdev style <YOUR_EXT>
locally? (pip install azdev
required)python scripts/ci/test_index.py -q
locally? (pip install wheel==0.30.0
required)For new extensions:
About Extension Publish
There is a pipeline to automatically build, upload and publish extension wheels.
Once your pull request is merged into main branch, a new pull request will be created to update
src/index.json
automatically.You only need to update the version information in file setup.py and historical information in file HISTORY.rst in your PR but do not modify
src/index.json
.