tis-azure-cli icon

Microsoft Azure CLI

Paquet d’installation silencieuse pour Microsoft Azure CLI

2.78.0-1

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-azure-cli
  • name: Microsoft Azure CLI
  • version: 2.78.0-1
  • maintainer: Amel FRADJ
  • licence: MIT license
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 67.09 Mo
  • homepage : https://github.com/Azure/azure-cli

package           : tis-azure-cli
version           : 2.78.0-1
architecture      : x64
section           : base
priority          : optional
name              : Microsoft Azure CLI
categories        : 
maintainer        : Amel FRADJ
description       : The Azure CLI is available across Azure services and is designed to get you working quickly with Azure, with an emphasis on automation
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Le CLI Azure est disponible pour tous les services Azure et est conçu pour vous permettre de travailler rapidement avec Azure, en mettant l'accent sur l'automatisation
description_pl    : Interfejs wiersza polecenia platformy Azure jest dostępny we wszystkich usługach platformy Azure i został zaprojektowany z myślą o szybkiej pracy z platformą Azure, z naciskiem na automatyzację
description_de    : Die Azure CLI ist für alle Azure-Dienste verfügbar und wurde entwickelt, damit Sie schnell mit Azure arbeiten können, wobei der Schwerpunkt auf der Automatisierung liegt
description_es    : La CLI de Azure está disponible en todos los servicios de Azure y se ha diseñado para que pueda trabajar rápidamente con Azure, haciendo hincapié en la automatización
description_pt    : A CLI do Azure está disponível em todos os serviços do Azure e foi concebida para o pôr a trabalhar rapidamente com o Azure, com ênfase na automatização
description_it    : La CLI di Azure è disponibile per tutti i servizi di Azure ed è progettata per farvi lavorare rapidamente con Azure, con un'enfasi particolare sull'automazione
description_nl    : De Azure CLI is beschikbaar voor alle Azure services en is ontworpen om je snel aan de slag te laten gaan met Azure, met de nadruk op automatisering
description_ru    : Azure CLI доступен для всех служб Azure и предназначен для быстрой работы с Azure с упором на автоматизацию
audit_schedule    : 
editor            : 
keywords          : 
licence           : MIT license
homepage          : https://github.com/Azure/azure-cli
package_uuid      : ffa9c989-a54d-4648-a84e-8a0d5369f943
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 79ed4120c064a9942bac41589e2827458618e73aed6553e24b400cb04bd04e82
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-10-14T03:05:36.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : RYKG7iXWcKZnFcd3kcHzupfO4+HfnEhVwv43uoP5fcINl5lhgTf0/KXJwoB+PK/tm79CU4gte4J0kSyuHJeEbn5mHWk+kkXwyWW1h8GPl0DF3JMMSI7Hk191ekaJaNmRdYztNs+mLGGKE9BSwgI+ylmevH+7DKmEKecOlxZ9YK5a0oigXWxkZRbaa4X6ofiZN703cFUpaFN6bJyMT+3pT2Hs3Y5tXbO8EMRzsrf7wWddNu7DyysQuV/1zLdk5AW0cSxvoKUyy9oO5ks3vHus1O54ds0fdF/1C5byOPepkLNd95eXo61ZNslMDuFvJGesBd25XE2Phc1qXNw4UKaIuQ==

# -*- coding: utf-8 -*-
from setuphelpers import *

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    bin_name = glob.glob('azure-cli-*.msi')[0]
    # Installing the software
    
    install_msi_if_needed(bin_name)



# -*- coding: utf-8 -*-
from setuphelpers import *
import re


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()

    git_repo = "Azure/azure-cli"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if download["browser_download_url"].endswith(".msi") :
            url_dl = download["browser_download_url"]
            version = json_load["name"].split(" ")[-1]
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl, filename, proxies=proxies)

    # nettoyer les fichiers temporaires
    for f in glob.glob("*.msi"):
        if f != filename:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
2f3977765509a22343293821d82e431e44260a3f9be208da77ffe16fb9d07b09 : WAPT/control
79ed4120c064a9942bac41589e2827458618e73aed6553e24b400cb04bd04e82 : WAPT/icon.png
07625cc9b4e7e4c05c4b0ddf012e20dc27f4efb0953cc064cd52df6fa299560a : azure-cli-2.78.0-x64.msi
73258c19f41527078fbb5a276346dbe5afd5e6174dfd2ccfae23d1fc78e59798 : luti.json
ff184f3708a7498ca0571f5230bec9ec5bc7f4f3da4c3d199fc02f5393b284e9 : setup.py
c6c998b2c424b90a6cf46c06b4cd2fae19f0b486ad41f29de6fc3dbc0af2bdd2 : update_package.py