azure-native.iotoperations.RegistryEndpoint
Explore with Pulumi AI
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:
- Instance
Name string - Name of instance.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Extended
Location Pulumi.Azure Native. Io TOperations. Inputs. Extended Location - Edge location of the resource.
- Properties
Pulumi.
Azure Native. Io TOperations. Inputs. Registry Endpoint Properties - The resource-specific properties for this resource.
- Registry
Endpoint stringName - Name of RegistryEndpoint resource
- Instance
Name string - Name of instance.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Extended
Location ExtendedLocation Args - Edge location of the resource.
- Properties
Registry
Endpoint Properties Args - The resource-specific properties for this resource.
- Registry
Endpoint stringName - Name of RegistryEndpoint resource
- instance
Name String - Name of instance.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- extended
Location ExtendedLocation - Edge location of the resource.
- properties
Registry
Endpoint Properties - The resource-specific properties for this resource.
- registry
Endpoint StringName - Name of RegistryEndpoint resource
- instance
Name string - Name of instance.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- extended
Location ExtendedLocation - Edge location of the resource.
- properties
Registry
Endpoint Properties - The resource-specific properties for this resource.
- registry
Endpoint stringName - Name of RegistryEndpoint resource
- instance_
name str - Name of instance.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- extended_
location ExtendedLocation Args - Edge location of the resource.
- properties
Registry
Endpoint Properties Args - The resource-specific properties for this resource.
- registry_
endpoint_ strname - Name of RegistryEndpoint resource
- instance
Name String - Name of instance.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- extended
Location Property Map - Edge location of the resource.
- properties Property Map
- The resource-specific properties for this resource.
- registry
Endpoint StringName - Name of RegistryEndpoint resource
Outputs
All input properties are implicitly available as output properties. Additionally, the RegistryEndpoint resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Io TOperations. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - 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
- system
Data SystemData Response - 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 stringVersion - 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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
- system
Data 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.
Azure Native. Io TOperations. Extended Location Type - Type of ExtendedLocation.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Type - Type of ExtendedLocation.
- name String
- The name of the extended location.
- type
String | Extended
Location Type - Type of ExtendedLocation.
- name string
- The name of the extended location.
- type
string | Extended
Location Type - Type of ExtendedLocation.
- name str
- The name of the extended location.
- type
str | Extended
Location Type - Type of ExtendedLocation.
- name String
- The name of the extended location.
- type
String | "Custom
Location" - Type of ExtendedLocation.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationType, ExtendedLocationTypeArgs
- Custom
Location - CustomLocationCustomLocation type
- Extended
Location Type Custom Location - CustomLocationCustomLocation type
- Custom
Location - CustomLocationCustomLocation type
- Custom
Location - CustomLocationCustomLocation type
- CUSTOM_LOCATION
- CustomLocationCustomLocation type
- "Custom
Location" - CustomLocationCustomLocation type
RegistryEndpointAnonymousAuthentication, RegistryEndpointAnonymousAuthenticationArgs
- Anonymous
Settings object - Anonymous authentication properties
- Anonymous
Settings interface{} - Anonymous authentication properties
- anonymous
Settings Object - Anonymous authentication properties
- anonymous
Settings any - Anonymous authentication properties
- anonymous_
settings Any - Anonymous authentication properties
- anonymous
Settings Any - Anonymous authentication properties
RegistryEndpointAnonymousAuthenticationResponse, RegistryEndpointAnonymousAuthenticationResponseArgs
- Anonymous
Settings object - Anonymous authentication properties
- Anonymous
Settings interface{} - Anonymous authentication properties
- anonymous
Settings Object - Anonymous authentication properties
- anonymous
Settings any - Anonymous authentication properties
- anonymous_
settings Any - Anonymous authentication properties
- anonymous
Settings Any - Anonymous authentication properties
RegistryEndpointArtifactPullSecretAuthentication, RegistryEndpointArtifactPullSecretAuthenticationArgs
- Artifact
Pull Pulumi.Secret Settings Azure Native. Io TOperations. Inputs. Registry Endpoint Artifact Pull Secret Settings - Artifact Pull Secret authentication properties
- Artifact
Pull RegistrySecret Settings Endpoint Artifact Pull Secret Settings - Artifact Pull Secret authentication properties
- artifact
Pull RegistrySecret Settings Endpoint Artifact Pull Secret Settings - Artifact Pull Secret authentication properties
- artifact
Pull RegistrySecret Settings Endpoint Artifact Pull Secret Settings - Artifact Pull Secret authentication properties
- artifact_
pull_ Registrysecret_ settings Endpoint Artifact Pull Secret Settings - Artifact Pull Secret authentication properties
- artifact
Pull Property MapSecret Settings - Artifact Pull Secret authentication properties
RegistryEndpointArtifactPullSecretAuthenticationResponse, RegistryEndpointArtifactPullSecretAuthenticationResponseArgs
- Artifact
Pull Pulumi.Secret Settings Azure Native. Io TOperations. Inputs. Registry Endpoint Artifact Pull Secret Settings Response - Artifact Pull Secret authentication properties
- Artifact
Pull RegistrySecret Settings Endpoint Artifact Pull Secret Settings Response - Artifact Pull Secret authentication properties
- artifact
Pull RegistrySecret Settings Endpoint Artifact Pull Secret Settings Response - Artifact Pull Secret authentication properties
- artifact
Pull RegistrySecret Settings Endpoint Artifact Pull Secret Settings Response - Artifact Pull Secret authentication properties
- artifact_
pull_ Registrysecret_ settings Endpoint Artifact Pull Secret Settings Response - Artifact Pull Secret authentication properties
- artifact
Pull Property MapSecret Settings - Artifact Pull Secret authentication properties
RegistryEndpointArtifactPullSecretSettings, RegistryEndpointArtifactPullSecretSettingsArgs
- Secret
Ref string - The name of the kubernetes secret that contains the artifact pull secret.
- Secret
Ref string - The name of the kubernetes secret that contains the artifact pull secret.
- secret
Ref String - The name of the kubernetes secret that contains the artifact pull secret.
- secret
Ref 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.
- secret
Ref String - The name of the kubernetes secret that contains the artifact pull secret.
RegistryEndpointArtifactPullSecretSettingsResponse, RegistryEndpointArtifactPullSecretSettingsResponseArgs
- Secret
Ref string - The name of the kubernetes secret that contains the artifact pull secret.
- Secret
Ref string - The name of the kubernetes secret that contains the artifact pull secret.
- secret
Ref String - The name of the kubernetes secret that contains the artifact pull secret.
- secret
Ref 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.
- secret
Ref String - The name of the kubernetes secret that contains the artifact pull secret.
RegistryEndpointProperties, RegistryEndpointPropertiesArgs
- Authentication
Pulumi.
Azure | Pulumi.Native. Io TOperations. Inputs. Registry Endpoint Anonymous Authentication Azure | Pulumi.Native. Io TOperations. Inputs. Registry Endpoint Artifact Pull Secret Authentication Azure | Pulumi.Native. Io TOperations. Inputs. Registry Endpoint System Assigned Identity Authentication Azure Native. Io TOperations. Inputs. Registry Endpoint User Assigned Identity Authentication - The authentication settings for the Azure Container Registry.
- Host string
- The Container Registry endpoint hostname.
- Trust
Settings Pulumi.Azure Native. Io TOperations. Inputs. Registry Endpoint Trusted Settings - Trust settings for the registry endpoint
- Authentication
Registry
Endpoint | RegistryAnonymous Authentication Endpoint | RegistryArtifact Pull Secret Authentication Endpoint | RegistrySystem Assigned Identity Authentication Endpoint User Assigned Identity Authentication - The authentication settings for the Azure Container Registry.
- Host string
- The Container Registry endpoint hostname.
- Trust
Settings RegistryEndpoint Trusted Settings - Trust settings for the registry endpoint
- authentication
Registry
Endpoint | RegistryAnonymous Authentication Endpoint | RegistryArtifact Pull Secret Authentication Endpoint | RegistrySystem Assigned Identity Authentication Endpoint User Assigned Identity Authentication - The authentication settings for the Azure Container Registry.
- host String
- The Container Registry endpoint hostname.
- trust
Settings RegistryEndpoint Trusted Settings - Trust settings for the registry endpoint
- authentication
Registry
Endpoint | RegistryAnonymous Authentication Endpoint | RegistryArtifact Pull Secret Authentication Endpoint | RegistrySystem Assigned Identity Authentication Endpoint User Assigned Identity Authentication - The authentication settings for the Azure Container Registry.
- host string
- The Container Registry endpoint hostname.
- trust
Settings RegistryEndpoint Trusted Settings - Trust settings for the registry endpoint
- authentication
Registry
Endpoint | RegistryAnonymous Authentication Endpoint | RegistryArtifact Pull Secret Authentication Endpoint | RegistrySystem Assigned Identity Authentication Endpoint User Assigned Identity Authentication - The authentication settings for the Azure Container Registry.
- host str
- The Container Registry endpoint hostname.
- trust_
settings RegistryEndpoint Trusted Settings - Trust settings for the registry endpoint
- authentication Property Map | Property Map | Property Map | Property Map
- The authentication settings for the Azure Container Registry.
- host String
- The Container Registry endpoint hostname.
- trust
Settings Property Map - Trust settings for the registry endpoint
RegistryEndpointPropertiesResponse, RegistryEndpointPropertiesResponseArgs
- Authentication
Pulumi.
Azure | Pulumi.Native. Io TOperations. Inputs. Registry Endpoint Anonymous Authentication Response Azure | Pulumi.Native. Io TOperations. Inputs. Registry Endpoint Artifact Pull Secret Authentication Response Azure | Pulumi.Native. Io TOperations. Inputs. Registry Endpoint System Assigned Identity Authentication Response Azure Native. Io TOperations. Inputs. Registry Endpoint User Assigned Identity Authentication Response - The authentication settings for the Azure Container Registry.
- Host string
- The Container Registry endpoint hostname.
- Provisioning
State string - The status of the last operation.
- Trust
Settings Pulumi.Azure Native. Io TOperations. Inputs. Registry Endpoint Trusted Settings Response - Trust settings for the registry endpoint
- Authentication
Registry
Endpoint | RegistryAnonymous Authentication Response Endpoint | RegistryArtifact Pull Secret Authentication Response Endpoint | RegistrySystem Assigned Identity Authentication Response Endpoint User Assigned Identity Authentication Response - The authentication settings for the Azure Container Registry.
- Host string
- The Container Registry endpoint hostname.
- Provisioning
State string - The status of the last operation.
- Trust
Settings RegistryEndpoint Trusted Settings Response - Trust settings for the registry endpoint
- authentication
Registry
Endpoint | RegistryAnonymous Authentication Response Endpoint | RegistryArtifact Pull Secret Authentication Response Endpoint | RegistrySystem Assigned Identity Authentication Response Endpoint User Assigned Identity Authentication Response - The authentication settings for the Azure Container Registry.
- host String
- The Container Registry endpoint hostname.
- provisioning
State String - The status of the last operation.
- trust
Settings RegistryEndpoint Trusted Settings Response - Trust settings for the registry endpoint
- authentication
Registry
Endpoint | RegistryAnonymous Authentication Response Endpoint | RegistryArtifact Pull Secret Authentication Response Endpoint | RegistrySystem Assigned Identity Authentication Response Endpoint User Assigned Identity Authentication Response - The authentication settings for the Azure Container Registry.
- host string
- The Container Registry endpoint hostname.
- provisioning
State string - The status of the last operation.
- trust
Settings RegistryEndpoint Trusted Settings Response - Trust settings for the registry endpoint
- authentication
Registry
Endpoint | RegistryAnonymous Authentication Response Endpoint | RegistryArtifact Pull Secret Authentication Response Endpoint | RegistrySystem Assigned Identity Authentication Response Endpoint User Assigned Identity Authentication Response - The authentication settings for the Azure Container Registry.
- host str
- The Container Registry endpoint hostname.
- provisioning_
state str - The status of the last operation.
- trust_
settings RegistryEndpoint Trusted Settings Response - Trust settings for the registry endpoint
- authentication Property Map | Property Map | Property Map | Property Map
- The authentication settings for the Azure Container Registry.
- host String
- The Container Registry endpoint hostname.
- provisioning
State String - The status of the last operation.
- trust
Settings Property Map - Trust settings for the registry endpoint
RegistryEndpointSystemAssignedIdentityAuthentication, RegistryEndpointSystemAssignedIdentityAuthenticationArgs
- System
Assigned Pulumi.Managed Identity Settings Azure Native. Io TOperations. Inputs. Registry Endpoint System Assigned Managed Identity Settings - System assigned managed identity properties
- System
Assigned RegistryManaged Identity Settings Endpoint System Assigned Managed Identity Settings - System assigned managed identity properties
- system
Assigned RegistryManaged Identity Settings Endpoint System Assigned Managed Identity Settings - System assigned managed identity properties
- system
Assigned RegistryManaged Identity Settings Endpoint System Assigned Managed Identity Settings - System assigned managed identity properties
- system_
assigned_ Registrymanaged_ identity_ settings Endpoint System Assigned Managed Identity Settings - System assigned managed identity properties
- system
Assigned Property MapManaged Identity Settings - System assigned managed identity properties
RegistryEndpointSystemAssignedIdentityAuthenticationResponse, RegistryEndpointSystemAssignedIdentityAuthenticationResponseArgs
- System
Assigned Pulumi.Managed Identity Settings Azure Native. Io TOperations. Inputs. Registry Endpoint System Assigned Managed Identity Settings Response - System assigned managed identity properties
- System
Assigned RegistryManaged Identity Settings Endpoint System Assigned Managed Identity Settings Response - System assigned managed identity properties
- system
Assigned RegistryManaged Identity Settings Endpoint System Assigned Managed Identity Settings Response - System assigned managed identity properties
- system
Assigned RegistryManaged Identity Settings Endpoint System Assigned Managed Identity Settings Response - System assigned managed identity properties
- system_
assigned_ Registrymanaged_ identity_ settings Endpoint System Assigned Managed Identity Settings Response - System assigned managed identity properties
- system
Assigned Property MapManaged Identity Settings - 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
- Trusted
Signing Pulumi.Keys Azure | Pulumi.Native. Io TOperations. Inputs. Registry Endpoint Trusted Signing Key Config Map Azure Native. Io TOperations. Inputs. Registry Endpoint Trusted Signing Key Secret - The trust properties for the registry endpoint.
- Trusted
Signing RegistryKeys Endpoint | RegistryTrusted Signing Key Config Map Endpoint Trusted Signing Key Secret - The trust properties for the registry endpoint.
- trusted
Signing RegistryKeys Endpoint | RegistryTrusted Signing Key Config Map Endpoint Trusted Signing Key Secret - The trust properties for the registry endpoint.
- trusted
Signing RegistryKeys Endpoint | RegistryTrusted Signing Key Config Map Endpoint Trusted Signing Key Secret - The trust properties for the registry endpoint.
- trusted_
signing_ Registrykeys Endpoint | RegistryTrusted Signing Key Config Map Endpoint Trusted Signing Key Secret - The trust properties for the registry endpoint.
- trusted
Signing Property Map | Property MapKeys - The trust properties for the registry endpoint.
RegistryEndpointTrustedSettingsResponse, RegistryEndpointTrustedSettingsResponseArgs
- Trusted
Signing Pulumi.Keys Azure | Pulumi.Native. Io TOperations. Inputs. Registry Endpoint Trusted Signing Key Config Map Response Azure Native. Io TOperations. Inputs. Registry Endpoint Trusted Signing Key Secret Response - The trust properties for the registry endpoint.
- Trusted
Signing RegistryKeys Endpoint | RegistryTrusted Signing Key Config Map Response Endpoint Trusted Signing Key Secret Response - The trust properties for the registry endpoint.
- trusted
Signing RegistryKeys Endpoint | RegistryTrusted Signing Key Config Map Response Endpoint Trusted Signing Key Secret Response - The trust properties for the registry endpoint.
- trusted
Signing RegistryKeys Endpoint | RegistryTrusted Signing Key Config Map Response Endpoint Trusted Signing Key Secret Response - The trust properties for the registry endpoint.
- trusted_
signing_ Registrykeys Endpoint | RegistryTrusted Signing Key Config Map Response Endpoint Trusted Signing Key Secret Response - The trust properties for the registry endpoint.
- trusted
Signing Property Map | Property MapKeys - The trust properties for the registry endpoint.
RegistryEndpointTrustedSigningKeyConfigMap, RegistryEndpointTrustedSigningKeyConfigMapArgs
- Config
Map stringRef - The name of the configmap.
- Config
Map stringRef - The name of the configmap.
- config
Map StringRef - The name of the configmap.
- config
Map stringRef - The name of the configmap.
- config_
map_ strref - The name of the configmap.
- config
Map StringRef - The name of the configmap.
RegistryEndpointTrustedSigningKeyConfigMapResponse, RegistryEndpointTrustedSigningKeyConfigMapResponseArgs
- Config
Map stringRef - The name of the configmap.
- Config
Map stringRef - The name of the configmap.
- config
Map StringRef - The name of the configmap.
- config
Map stringRef - The name of the configmap.
- config_
map_ strref - The name of the configmap.
- config
Map StringRef - The name of the configmap.
RegistryEndpointTrustedSigningKeySecret, RegistryEndpointTrustedSigningKeySecretArgs
- Secret
Ref string - The name of the secret.
- Secret
Ref string - The name of the secret.
- secret
Ref String - The name of the secret.
- secret
Ref string - The name of the secret.
- secret_
ref str - The name of the secret.
- secret
Ref String - The name of the secret.
RegistryEndpointTrustedSigningKeySecretResponse, RegistryEndpointTrustedSigningKeySecretResponseArgs
- Secret
Ref string - The name of the secret.
- Secret
Ref string - The name of the secret.
- secret
Ref String - The name of the secret.
- secret
Ref string - The name of the secret.
- secret_
ref str - The name of the secret.
- secret
Ref String - The name of the secret.
RegistryEndpointUserAssignedIdentityAuthentication, RegistryEndpointUserAssignedIdentityAuthenticationArgs
- User
Assigned Pulumi.Managed Identity Settings Azure Native. Io TOperations. Inputs. Registry Endpoint User Assigned Managed Identity Settings - User assigned managed identity properties
- User
Assigned RegistryManaged Identity Settings Endpoint User Assigned Managed Identity Settings - User assigned managed identity properties
- user
Assigned RegistryManaged Identity Settings Endpoint User Assigned Managed Identity Settings - User assigned managed identity properties
- user
Assigned RegistryManaged Identity Settings Endpoint User Assigned Managed Identity Settings - User assigned managed identity properties
- user_
assigned_ Registrymanaged_ identity_ settings Endpoint User Assigned Managed Identity Settings - User assigned managed identity properties
- user
Assigned Property MapManaged Identity Settings - User assigned managed identity properties
RegistryEndpointUserAssignedIdentityAuthenticationResponse, RegistryEndpointUserAssignedIdentityAuthenticationResponseArgs
- User
Assigned Pulumi.Managed Identity Settings Azure Native. Io TOperations. Inputs. Registry Endpoint User Assigned Managed Identity Settings Response - User assigned managed identity properties
- User
Assigned RegistryManaged Identity Settings Endpoint User Assigned Managed Identity Settings Response - User assigned managed identity properties
- user
Assigned RegistryManaged Identity Settings Endpoint User Assigned Managed Identity Settings Response - User assigned managed identity properties
- user
Assigned RegistryManaged Identity Settings Endpoint User Assigned Managed Identity Settings Response - User assigned managed identity properties
- user_
assigned_ Registrymanaged_ identity_ settings Endpoint User Assigned Managed Identity Settings Response - User assigned managed identity properties
- user
Assigned Property MapManaged Identity Settings - User assigned managed identity properties
RegistryEndpointUserAssignedManagedIdentitySettings, RegistryEndpointUserAssignedManagedIdentitySettingsArgs
RegistryEndpointUserAssignedManagedIdentitySettingsResponse, RegistryEndpointUserAssignedManagedIdentitySettingsResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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