1. Packages
  2. Azure Native
  3. API Docs
  4. iotoperations
  5. RegistryEndpoint
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

azure-native.iotoperations.RegistryEndpoint

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi

    RegistryEndpoint resource

    Uses Azure REST API version 2025-07-01-preview.

    Example Usage

    RegistryEndpoint_CreateOrUpdate_MaximumSet

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var registryEndpoint = new AzureNative.IoTOperations.RegistryEndpoint("registryEndpoint", new()
        {
            ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
            {
                Name = "/subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123",
                Type = AzureNative.IoTOperations.ExtendedLocationType.CustomLocation,
            },
            InstanceName = "resource-123",
            Properties = new AzureNative.IoTOperations.Inputs.RegistryEndpointPropertiesArgs
            {
                Authentication = new AzureNative.IoTOperations.Inputs.RegistryEndpointAnonymousAuthenticationArgs
                {
                    AnonymousSettings = null,
                    Method = "Anonymous",
                },
                Host = "contoso.azurecr.io",
            },
            RegistryEndpointName = "resource-123",
            ResourceGroupName = "rgiotoperations",
        });
    
    });
    
    package main
    
    import (
    	iotoperations "github.com/pulumi/pulumi-azure-native-sdk/iotoperations/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iotoperations.NewRegistryEndpoint(ctx, "registryEndpoint", &iotoperations.RegistryEndpointArgs{
    			ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123"),
    				Type: pulumi.String(iotoperations.ExtendedLocationTypeCustomLocation),
    			},
    			InstanceName: pulumi.String("resource-123"),
    			Properties: &iotoperations.RegistryEndpointPropertiesArgs{
    				Authentication: iotoperations.RegistryEndpointAnonymousAuthentication{
    					AnonymousSettings: map[string]interface{}{},
    					Method:            "Anonymous",
    				},
    				Host: pulumi.String("contoso.azurecr.io"),
    			},
    			RegistryEndpointName: pulumi.String("resource-123"),
    			ResourceGroupName:    pulumi.String("rgiotoperations"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.iotoperations.RegistryEndpoint;
    import com.pulumi.azurenative.iotoperations.RegistryEndpointArgs;
    import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.iotoperations.inputs.RegistryEndpointPropertiesArgs;
    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) {
            var registryEndpoint = new RegistryEndpoint("registryEndpoint", RegistryEndpointArgs.builder()
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("/subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123")
                    .type("CustomLocation")
                    .build())
                .instanceName("resource-123")
                .properties(RegistryEndpointPropertiesArgs.builder()
                    .authentication(RegistryEndpointAnonymousAuthenticationArgs.builder()
                        .anonymousSettings(Map.ofEntries(
                        ))
                        .method("Anonymous")
                        .build())
                    .host("contoso.azurecr.io")
                    .build())
                .registryEndpointName("resource-123")
                .resourceGroupName("rgiotoperations")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const registryEndpoint = new azure_native.iotoperations.RegistryEndpoint("registryEndpoint", {
        extendedLocation: {
            name: "/subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123",
            type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
        },
        instanceName: "resource-123",
        properties: {
            authentication: {
                anonymousSettings: {},
                method: "Anonymous",
            },
            host: "contoso.azurecr.io",
        },
        registryEndpointName: "resource-123",
        resourceGroupName: "rgiotoperations",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    registry_endpoint = azure_native.iotoperations.RegistryEndpoint("registryEndpoint",
        extended_location={
            "name": "/subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123",
            "type": azure_native.iotoperations.ExtendedLocationType.CUSTOM_LOCATION,
        },
        instance_name="resource-123",
        properties={
            "authentication": {
                "anonymous_settings": {},
                "method": "Anonymous",
            },
            "host": "contoso.azurecr.io",
        },
        registry_endpoint_name="resource-123",
        resource_group_name="rgiotoperations")
    
    resources:
      registryEndpoint:
        type: azure-native:iotoperations:RegistryEndpoint
        properties:
          extendedLocation:
            name: /subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123
            type: CustomLocation
          instanceName: resource-123
          properties:
            authentication:
              anonymousSettings: {}
              method: Anonymous
            host: contoso.azurecr.io
          registryEndpointName: resource-123
          resourceGroupName: rgiotoperations
    

    Create RegistryEndpoint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RegistryEndpoint(name: string, args: RegistryEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def RegistryEndpoint(resource_name: str,
                         args: RegistryEndpointArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def RegistryEndpoint(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         instance_name: Optional[str] = None,
                         resource_group_name: Optional[str] = None,
                         extended_location: Optional[ExtendedLocationArgs] = None,
                         properties: Optional[RegistryEndpointPropertiesArgs] = None,
                         registry_endpoint_name: Optional[str] = None)
    func NewRegistryEndpoint(ctx *Context, name string, args RegistryEndpointArgs, opts ...ResourceOption) (*RegistryEndpoint, error)
    public RegistryEndpoint(string name, RegistryEndpointArgs args, CustomResourceOptions? opts = null)
    public RegistryEndpoint(String name, RegistryEndpointArgs args)
    public RegistryEndpoint(String name, RegistryEndpointArgs args, CustomResourceOptions options)
    
    type: azure-native:iotoperations:RegistryEndpoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RegistryEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RegistryEndpointArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RegistryEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RegistryEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RegistryEndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var registryEndpointResource = new AzureNative.IoTOperations.RegistryEndpoint("registryEndpointResource", new()
    {
        InstanceName = "string",
        ResourceGroupName = "string",
        ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        Properties = new AzureNative.IoTOperations.Inputs.RegistryEndpointPropertiesArgs
        {
            Authentication = new AzureNative.IoTOperations.Inputs.RegistryEndpointAnonymousAuthenticationArgs
            {
                AnonymousSettings = "any",
                Method = "Anonymous",
            },
            Host = "string",
            TrustSettings = new AzureNative.IoTOperations.Inputs.RegistryEndpointTrustedSettingsArgs
            {
                TrustedSigningKeys = new AzureNative.IoTOperations.Inputs.RegistryEndpointTrustedSigningKeyConfigMapArgs
                {
                    ConfigMapRef = "string",
                    Type = "ConfigMap",
                },
            },
        },
        RegistryEndpointName = "string",
    });
    
    example, err := iotoperations.NewRegistryEndpoint(ctx, "registryEndpointResource", &iotoperations.RegistryEndpointArgs{
    	InstanceName:      pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	Properties: &iotoperations.RegistryEndpointPropertiesArgs{
    		Authentication: iotoperations.RegistryEndpointAnonymousAuthentication{
    			AnonymousSettings: "any",
    			Method:            "Anonymous",
    		},
    		Host: pulumi.String("string"),
    		TrustSettings: &iotoperations.RegistryEndpointTrustedSettingsArgs{
    			TrustedSigningKeys: iotoperations.RegistryEndpointTrustedSigningKeyConfigMap{
    				"configMapRef": "string",
    				"type":         "ConfigMap",
    			},
    		},
    	},
    	RegistryEndpointName: pulumi.String("string"),
    })
    
    var registryEndpointResource = new RegistryEndpoint("registryEndpointResource", RegistryEndpointArgs.builder()
        .instanceName("string")
        .resourceGroupName("string")
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .properties(RegistryEndpointPropertiesArgs.builder()
            .authentication(RegistryEndpointAnonymousAuthenticationArgs.builder()
                .anonymousSettings("any")
                .method("Anonymous")
                .build())
            .host("string")
            .trustSettings(RegistryEndpointTrustedSettingsArgs.builder()
                .trustedSigningKeys(RegistryEndpointTrustedSigningKeyConfigMapArgs.builder()
                    .configMapRef("string")
                    .type("ConfigMap")
                    .build())
                .build())
            .build())
        .registryEndpointName("string")
        .build());
    
    registry_endpoint_resource = azure_native.iotoperations.RegistryEndpoint("registryEndpointResource",
        instance_name="string",
        resource_group_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        properties={
            "authentication": {
                "anonymous_settings": "any",
                "method": "Anonymous",
            },
            "host": "string",
            "trust_settings": {
                "trusted_signing_keys": {
                    "config_map_ref": "string",
                    "type": "ConfigMap",
                },
            },
        },
        registry_endpoint_name="string")
    
    const registryEndpointResource = new azure_native.iotoperations.RegistryEndpoint("registryEndpointResource", {
        instanceName: "string",
        resourceGroupName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        properties: {
            authentication: {
                anonymousSettings: "any",
                method: "Anonymous",
            },
            host: "string",
            trustSettings: {
                trustedSigningKeys: {
                    configMapRef: "string",
                    type: "ConfigMap",
                },
            },
        },
        registryEndpointName: "string",
    });
    
    type: azure-native:iotoperations:RegistryEndpoint
    properties:
        extendedLocation:
            name: string
            type: string
        instanceName: string
        properties:
            authentication:
                anonymousSettings: any
                method: Anonymous
            host: string
            trustSettings:
                trustedSigningKeys:
                    configMapRef: string
                    type: ConfigMap
        registryEndpointName: string
        resourceGroupName: string
    

    RegistryEndpoint Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RegistryEndpoint resource accepts the following input properties:

    InstanceName string
    Name of instance.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation Pulumi.AzureNative.IoTOperations.Inputs.ExtendedLocation
    Edge location of the resource.
    Properties Pulumi.AzureNative.IoTOperations.Inputs.RegistryEndpointProperties
    The resource-specific properties for this resource.
    RegistryEndpointName string
    Name of RegistryEndpoint resource
    InstanceName string
    Name of instance.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation ExtendedLocationArgs
    Edge location of the resource.
    Properties RegistryEndpointPropertiesArgs
    The resource-specific properties for this resource.
    RegistryEndpointName string
    Name of RegistryEndpoint resource
    instanceName String
    Name of instance.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation ExtendedLocation
    Edge location of the resource.
    properties RegistryEndpointProperties
    The resource-specific properties for this resource.
    registryEndpointName String
    Name of RegistryEndpoint resource
    instanceName string
    Name of instance.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    extendedLocation ExtendedLocation
    Edge location of the resource.
    properties RegistryEndpointProperties
    The resource-specific properties for this resource.
    registryEndpointName string
    Name of RegistryEndpoint resource
    instance_name str
    Name of instance.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    extended_location ExtendedLocationArgs
    Edge location of the resource.
    properties RegistryEndpointPropertiesArgs
    The resource-specific properties for this resource.
    registry_endpoint_name str
    Name of RegistryEndpoint resource
    instanceName String
    Name of instance.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation Property Map
    Edge location of the resource.
    properties Property Map
    The resource-specific properties for this resource.
    registryEndpointName String
    Name of RegistryEndpoint resource

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RegistryEndpoint resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.IoTOperations.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ExtendedLocation, ExtendedLocationArgs

    Name string
    The name of the extended location.
    Type string | Pulumi.AzureNative.IoTOperations.ExtendedLocationType
    Type of ExtendedLocation.
    Name string
    The name of the extended location.
    Type string | ExtendedLocationType
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String | ExtendedLocationType
    Type of ExtendedLocation.
    name string
    The name of the extended location.
    type string | ExtendedLocationType
    Type of ExtendedLocation.
    name str
    The name of the extended location.
    type str | ExtendedLocationType
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String | "CustomLocation"
    Type of ExtendedLocation.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string
    The name of the extended location.
    Type string
    Type of ExtendedLocation.
    Name string
    The name of the extended location.
    Type string
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String
    Type of ExtendedLocation.
    name string
    The name of the extended location.
    type string
    Type of ExtendedLocation.
    name str
    The name of the extended location.
    type str
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String
    Type of ExtendedLocation.

    ExtendedLocationType, ExtendedLocationTypeArgs

    CustomLocation
    CustomLocationCustomLocation type
    ExtendedLocationTypeCustomLocation
    CustomLocationCustomLocation type
    CustomLocation
    CustomLocationCustomLocation type
    CustomLocation
    CustomLocationCustomLocation type
    CUSTOM_LOCATION
    CustomLocationCustomLocation type
    "CustomLocation"
    CustomLocationCustomLocation type

    RegistryEndpointAnonymousAuthentication, RegistryEndpointAnonymousAuthenticationArgs

    AnonymousSettings object
    Anonymous authentication properties
    AnonymousSettings interface{}
    Anonymous authentication properties
    anonymousSettings Object
    Anonymous authentication properties
    anonymousSettings any
    Anonymous authentication properties
    anonymous_settings Any
    Anonymous authentication properties
    anonymousSettings Any
    Anonymous authentication properties

    RegistryEndpointAnonymousAuthenticationResponse, RegistryEndpointAnonymousAuthenticationResponseArgs

    AnonymousSettings object
    Anonymous authentication properties
    AnonymousSettings interface{}
    Anonymous authentication properties
    anonymousSettings Object
    Anonymous authentication properties
    anonymousSettings any
    Anonymous authentication properties
    anonymous_settings Any
    Anonymous authentication properties
    anonymousSettings Any
    Anonymous authentication properties

    RegistryEndpointArtifactPullSecretAuthentication, RegistryEndpointArtifactPullSecretAuthenticationArgs

    ArtifactPullSecretSettings RegistryEndpointArtifactPullSecretSettings
    Artifact Pull Secret authentication properties
    artifactPullSecretSettings RegistryEndpointArtifactPullSecretSettings
    Artifact Pull Secret authentication properties
    artifactPullSecretSettings RegistryEndpointArtifactPullSecretSettings
    Artifact Pull Secret authentication properties
    artifactPullSecretSettings Property Map
    Artifact Pull Secret authentication properties

    RegistryEndpointArtifactPullSecretAuthenticationResponse, RegistryEndpointArtifactPullSecretAuthenticationResponseArgs

    artifactPullSecretSettings Property Map
    Artifact Pull Secret authentication properties

    RegistryEndpointArtifactPullSecretSettings, RegistryEndpointArtifactPullSecretSettingsArgs

    SecretRef string
    The name of the kubernetes secret that contains the artifact pull secret.
    SecretRef string
    The name of the kubernetes secret that contains the artifact pull secret.
    secretRef String
    The name of the kubernetes secret that contains the artifact pull secret.
    secretRef string
    The name of the kubernetes secret that contains the artifact pull secret.
    secret_ref str
    The name of the kubernetes secret that contains the artifact pull secret.
    secretRef String
    The name of the kubernetes secret that contains the artifact pull secret.

    RegistryEndpointArtifactPullSecretSettingsResponse, RegistryEndpointArtifactPullSecretSettingsResponseArgs

    SecretRef string
    The name of the kubernetes secret that contains the artifact pull secret.
    SecretRef string
    The name of the kubernetes secret that contains the artifact pull secret.
    secretRef String
    The name of the kubernetes secret that contains the artifact pull secret.
    secretRef string
    The name of the kubernetes secret that contains the artifact pull secret.
    secret_ref str
    The name of the kubernetes secret that contains the artifact pull secret.
    secretRef String
    The name of the kubernetes secret that contains the artifact pull secret.

    RegistryEndpointProperties, RegistryEndpointPropertiesArgs

    authentication Property Map | Property Map | Property Map | Property Map
    The authentication settings for the Azure Container Registry.
    host String
    The Container Registry endpoint hostname.
    trustSettings Property Map
    Trust settings for the registry endpoint

    RegistryEndpointPropertiesResponse, RegistryEndpointPropertiesResponseArgs

    authentication Property Map | Property Map | Property Map | Property Map
    The authentication settings for the Azure Container Registry.
    host String
    The Container Registry endpoint hostname.
    provisioningState String
    The status of the last operation.
    trustSettings Property Map
    Trust settings for the registry endpoint

    RegistryEndpointSystemAssignedIdentityAuthentication, RegistryEndpointSystemAssignedIdentityAuthenticationArgs

    systemAssignedManagedIdentitySettings Property Map
    System assigned managed identity properties

    RegistryEndpointSystemAssignedIdentityAuthenticationResponse, RegistryEndpointSystemAssignedIdentityAuthenticationResponseArgs

    systemAssignedManagedIdentitySettings Property Map
    System assigned managed identity properties

    RegistryEndpointSystemAssignedManagedIdentitySettings, RegistryEndpointSystemAssignedManagedIdentitySettingsArgs

    Audience string
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    Audience string
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    audience String
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    audience string
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    audience str
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    audience String
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.

    RegistryEndpointSystemAssignedManagedIdentitySettingsResponse, RegistryEndpointSystemAssignedManagedIdentitySettingsResponseArgs

    Audience string
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    Audience string
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    audience String
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    audience string
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    audience str
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.
    audience String
    Audience of the service to authenticate against. Optional; defaults to the audience for Service host configuration.

    RegistryEndpointTrustedSettings, RegistryEndpointTrustedSettingsArgs

    trustedSigningKeys Property Map | Property Map
    The trust properties for the registry endpoint.

    RegistryEndpointTrustedSettingsResponse, RegistryEndpointTrustedSettingsResponseArgs

    trustedSigningKeys Property Map | Property Map
    The trust properties for the registry endpoint.

    RegistryEndpointTrustedSigningKeyConfigMap, RegistryEndpointTrustedSigningKeyConfigMapArgs

    ConfigMapRef string
    The name of the configmap.
    ConfigMapRef string
    The name of the configmap.
    configMapRef String
    The name of the configmap.
    configMapRef string
    The name of the configmap.
    config_map_ref str
    The name of the configmap.
    configMapRef String
    The name of the configmap.

    RegistryEndpointTrustedSigningKeyConfigMapResponse, RegistryEndpointTrustedSigningKeyConfigMapResponseArgs

    ConfigMapRef string
    The name of the configmap.
    ConfigMapRef string
    The name of the configmap.
    configMapRef String
    The name of the configmap.
    configMapRef string
    The name of the configmap.
    config_map_ref str
    The name of the configmap.
    configMapRef String
    The name of the configmap.

    RegistryEndpointTrustedSigningKeySecret, RegistryEndpointTrustedSigningKeySecretArgs

    SecretRef string
    The name of the secret.
    SecretRef string
    The name of the secret.
    secretRef String
    The name of the secret.
    secretRef string
    The name of the secret.
    secret_ref str
    The name of the secret.
    secretRef String
    The name of the secret.

    RegistryEndpointTrustedSigningKeySecretResponse, RegistryEndpointTrustedSigningKeySecretResponseArgs

    SecretRef string
    The name of the secret.
    SecretRef string
    The name of the secret.
    secretRef String
    The name of the secret.
    secretRef string
    The name of the secret.
    secret_ref str
    The name of the secret.
    secretRef String
    The name of the secret.

    RegistryEndpointUserAssignedIdentityAuthentication, RegistryEndpointUserAssignedIdentityAuthenticationArgs

    userAssignedManagedIdentitySettings Property Map
    User assigned managed identity properties

    RegistryEndpointUserAssignedIdentityAuthenticationResponse, RegistryEndpointUserAssignedIdentityAuthenticationResponseArgs

    userAssignedManagedIdentitySettings Property Map
    User assigned managed identity properties

    RegistryEndpointUserAssignedManagedIdentitySettings, RegistryEndpointUserAssignedManagedIdentitySettingsArgs

    ClientId string
    Client ID for the user-assigned managed identity.
    TenantId string
    Tenant ID.
    Scope string
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    ClientId string
    Client ID for the user-assigned managed identity.
    TenantId string
    Tenant ID.
    Scope string
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    clientId String
    Client ID for the user-assigned managed identity.
    tenantId String
    Tenant ID.
    scope String
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    clientId string
    Client ID for the user-assigned managed identity.
    tenantId string
    Tenant ID.
    scope string
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    client_id str
    Client ID for the user-assigned managed identity.
    tenant_id str
    Tenant ID.
    scope str
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    clientId String
    Client ID for the user-assigned managed identity.
    tenantId String
    Tenant ID.
    scope String
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.

    RegistryEndpointUserAssignedManagedIdentitySettingsResponse, RegistryEndpointUserAssignedManagedIdentitySettingsResponseArgs

    ClientId string
    Client ID for the user-assigned managed identity.
    TenantId string
    Tenant ID.
    Scope string
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    ClientId string
    Client ID for the user-assigned managed identity.
    TenantId string
    Tenant ID.
    Scope string
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    clientId String
    Client ID for the user-assigned managed identity.
    tenantId String
    Tenant ID.
    scope String
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    clientId string
    Client ID for the user-assigned managed identity.
    tenantId string
    Tenant ID.
    scope string
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    client_id str
    Client ID for the user-assigned managed identity.
    tenant_id str
    Tenant ID.
    scope str
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.
    clientId String
    Client ID for the user-assigned managed identity.
    tenantId String
    Tenant ID.
    scope String
    Resource identifier (application ID URI) of the resource, affixed with the .default suffix.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:iotoperations:RegistryEndpoint resource-name123 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperations/instances/{instanceName}/registryEndpoints/{registryEndpointName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.7.1 published on Wednesday, Aug 13, 2025 by Pulumi