getRegistryScopeMap

Use this data source to access information about an existing Container Registry scope map.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.containerservice.ContainerserviceFunctions;
import com.pulumi.azure.containerservice.inputs.GetRegistryScopeMapArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = ContainerserviceFunctions.getRegistryScopeMap(GetRegistryScopeMapArgs.builder()
.name("example-scope-map")
.resourceGroupName("example-resource-group")
.containerRegistryName("example-registry")
.build());
ctx.export("actions", example.applyValue(getRegistryScopeMapResult -> getRegistryScopeMapResult.actions()));
}
}

Return

A collection of values returned by getRegistryScopeMap.

Parameters

argument

A collection of arguments for invoking getRegistryScopeMap.


suspend fun getRegistryScopeMap(containerRegistryName: String, name: String, resourceGroupName: String): GetRegistryScopeMapResult

Return

A collection of values returned by getRegistryScopeMap.

See also

Parameters

containerRegistryName

The Name of the Container Registry where the token exists.

name

The name of the Container Registry token.

resourceGroupName

The Name of the Resource Group where this Container Registry token exists.


Return

A collection of values returned by getRegistryScopeMap.

See also

Parameters

argument

Builder for com.pulumi.azure.containerservice.kotlin.inputs.GetRegistryScopeMapPlainArgs.