basically what is the equivalent of this code from...
# general
b
basically what is the equivalent of this code from
Azure
classic library of pulumi(https://www.pulumi.com/docs/reference/pkg/azure/containerservice/registry/)
Copy code
var registry = new Azure.ContainerService.Registry(registryName,
                new Azure.ContainerService.RegistryArgs
            {
                AdminEnabled = true,
                Name = registryName,
                ResourceGroupName = resourceGroup.Name,
                Sku = "Standard",
                Tags = 
                {
                    {"scope", "sample scope"}
                },
            });

Url = registry.LoginServer.Apply(loginServer=> $"https://{loginServer}");
Password = registry.AdminPassword;
Username = registry.AdminUsername;
with the new api,
AzureNative
(https://www.pulumi.com/docs/reference/pkg/azure-native/containerregistry/registry/)