little-chef-2593
09/07/2026, 12:09 AMutilities :
// Code generated by pulumi-language-go DO NOT EDIT.
// *** WARNING: Do not edit by hand unless you're certain you know what you are doing! ***
package containerregistry
import (
"context"
"reflect"
"errors"
>>> "<http://github.com/pulumi/pulumi-azure-native-sdk/v3/utilities|github.com/pulumi/pulumi-azure-native-sdk/v3/utilities>" <<<
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
The new version that we are trying to use import its own utilities which needs to be used instead of utilities from the published module due to difference in interface. I tried using replace directive but that didn't work:
replace github.com/pulumi/pulumi-azure-native-sdk/v3/utilities => ./sdks/azure-native_containerregistry_v20260101preview/v3/utilities
Our solution so far is hand edit generated files to point them to the right utilities. That feels really prone to break on the next generation.little-chef-2593
09/07/2026, 6:07 AMancient-policeman-24615
09/08/2026, 10:29 AM