1. Packages
  2. Azure Native
  3. API Docs
  4. iotoperations
  5. BrokerListener
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

azure-native.iotoperations.BrokerListener

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi

    Instance broker resource Azure REST API version: 2024-07-01-preview.

    Other available API versions: 2024-08-15-preview.

    Example Usage

    BrokerListener_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var brokerListener = new AzureNative.IoTOperations.BrokerListener("brokerListener", new()
        {
            BrokerName = "aio-broker",
            ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
            {
                Name = "ycsyubcxttlusbhfdqaynmkaatnbyv",
                Type = AzureNative.IoTOperations.ExtendedLocationType.CustomLocation,
            },
            InstanceName = "aio-instance",
            ListenerName = "aio-listener",
            Properties = new AzureNative.IoTOperations.Inputs.BrokerListenerPropertiesArgs
            {
                BrokerRef = "aio-broker",
                Ports = new[]
                {
                    new AzureNative.IoTOperations.Inputs.ListenerPortArgs
                    {
                        AuthenticationRef = "authn",
                        Port = 8883,
                        Protocol = AzureNative.IoTOperations.BrokerProtocolType.Mqtt,
                        Tls = new AzureNative.IoTOperations.Inputs.TlsCertMethodArgs
                        {
                            Automatic = new AzureNative.IoTOperations.Inputs.AutomaticCertMethodArgs
                            {
                                IssuerRef = new AzureNative.IoTOperations.Inputs.CertManagerIssuerRefArgs
                                {
                                    ApiGroup = "cert-manager.io",
                                    Kind = AzureNative.IoTOperations.CertManagerIssuerKind.Issuer,
                                    Name = "mq-dmqtt-frontend",
                                },
                            },
                            Mode = AzureNative.IoTOperations.TlsCertMethodMode.Automatic,
                        },
                    },
                },
                ServiceName = "aio-mq-dmqtt-frontend",
                ServiceType = AzureNative.IoTOperations.ServiceType.ClusterIp,
            },
            ResourceGroupName = "rgiotoperations",
        });
    
    });
    
    package main
    
    import (
    	iotoperations "github.com/pulumi/pulumi-azure-native-sdk/iotoperations/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iotoperations.NewBrokerListener(ctx, "brokerListener", &iotoperations.BrokerListenerArgs{
    			BrokerName: pulumi.String("aio-broker"),
    			ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    				Name: pulumi.String("ycsyubcxttlusbhfdqaynmkaatnbyv"),
    				Type: pulumi.String(iotoperations.ExtendedLocationTypeCustomLocation),
    			},
    			InstanceName: pulumi.String("aio-instance"),
    			ListenerName: pulumi.String("aio-listener"),
    			Properties: &iotoperations.BrokerListenerPropertiesArgs{
    				BrokerRef: pulumi.String("aio-broker"),
    				Ports: iotoperations.ListenerPortArray{
    					&iotoperations.ListenerPortArgs{
    						AuthenticationRef: pulumi.String("authn"),
    						Port:              pulumi.Int(8883),
    						Protocol:          pulumi.String(iotoperations.BrokerProtocolTypeMqtt),
    						Tls: &iotoperations.TlsCertMethodArgs{
    							Automatic: &iotoperations.AutomaticCertMethodArgs{
    								IssuerRef: &iotoperations.CertManagerIssuerRefArgs{
    									ApiGroup: pulumi.String("cert-manager.io"),
    									Kind:     pulumi.String(iotoperations.CertManagerIssuerKindIssuer),
    									Name:     pulumi.String("mq-dmqtt-frontend"),
    								},
    							},
    							Mode: pulumi.String(iotoperations.TlsCertMethodModeAutomatic),
    						},
    					},
    				},
    				ServiceName: pulumi.String("aio-mq-dmqtt-frontend"),
    				ServiceType: pulumi.String(iotoperations.ServiceTypeClusterIp),
    			},
    			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.BrokerListener;
    import com.pulumi.azurenative.iotoperations.BrokerListenerArgs;
    import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.iotoperations.inputs.BrokerListenerPropertiesArgs;
    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 brokerListener = new BrokerListener("brokerListener", BrokerListenerArgs.builder()
                .brokerName("aio-broker")
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("ycsyubcxttlusbhfdqaynmkaatnbyv")
                    .type("CustomLocation")
                    .build())
                .instanceName("aio-instance")
                .listenerName("aio-listener")
                .properties(BrokerListenerPropertiesArgs.builder()
                    .brokerRef("aio-broker")
                    .ports(ListenerPortArgs.builder()
                        .authenticationRef("authn")
                        .port(8883)
                        .protocol("Mqtt")
                        .tls(TlsCertMethodArgs.builder()
                            .automatic(AutomaticCertMethodArgs.builder()
                                .issuerRef(CertManagerIssuerRefArgs.builder()
                                    .apiGroup("cert-manager.io")
                                    .kind("Issuer")
                                    .name("mq-dmqtt-frontend")
                                    .build())
                                .build())
                            .mode("Automatic")
                            .build())
                        .build())
                    .serviceName("aio-mq-dmqtt-frontend")
                    .serviceType("ClusterIp")
                    .build())
                .resourceGroupName("rgiotoperations")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    broker_listener = azure_native.iotoperations.BrokerListener("brokerListener",
        broker_name="aio-broker",
        extended_location={
            "name": "ycsyubcxttlusbhfdqaynmkaatnbyv",
            "type": azure_native.iotoperations.ExtendedLocationType.CUSTOM_LOCATION,
        },
        instance_name="aio-instance",
        listener_name="aio-listener",
        properties={
            "broker_ref": "aio-broker",
            "ports": [{
                "authentication_ref": "authn",
                "port": 8883,
                "protocol": azure_native.iotoperations.BrokerProtocolType.MQTT,
                "tls": {
                    "automatic": {
                        "issuer_ref": {
                            "api_group": "cert-manager.io",
                            "kind": azure_native.iotoperations.CertManagerIssuerKind.ISSUER,
                            "name": "mq-dmqtt-frontend",
                        },
                    },
                    "mode": azure_native.iotoperations.TlsCertMethodMode.AUTOMATIC,
                },
            }],
            "service_name": "aio-mq-dmqtt-frontend",
            "service_type": azure_native.iotoperations.ServiceType.CLUSTER_IP,
        },
        resource_group_name="rgiotoperations")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const brokerListener = new azure_native.iotoperations.BrokerListener("brokerListener", {
        brokerName: "aio-broker",
        extendedLocation: {
            name: "ycsyubcxttlusbhfdqaynmkaatnbyv",
            type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
        },
        instanceName: "aio-instance",
        listenerName: "aio-listener",
        properties: {
            brokerRef: "aio-broker",
            ports: [{
                authenticationRef: "authn",
                port: 8883,
                protocol: azure_native.iotoperations.BrokerProtocolType.Mqtt,
                tls: {
                    automatic: {
                        issuerRef: {
                            apiGroup: "cert-manager.io",
                            kind: azure_native.iotoperations.CertManagerIssuerKind.Issuer,
                            name: "mq-dmqtt-frontend",
                        },
                    },
                    mode: azure_native.iotoperations.TlsCertMethodMode.Automatic,
                },
            }],
            serviceName: "aio-mq-dmqtt-frontend",
            serviceType: azure_native.iotoperations.ServiceType.ClusterIp,
        },
        resourceGroupName: "rgiotoperations",
    });
    
    resources:
      brokerListener:
        type: azure-native:iotoperations:BrokerListener
        properties:
          brokerName: aio-broker
          extendedLocation:
            name: ycsyubcxttlusbhfdqaynmkaatnbyv
            type: CustomLocation
          instanceName: aio-instance
          listenerName: aio-listener
          properties:
            brokerRef: aio-broker
            ports:
              - authenticationRef: authn
                port: 8883
                protocol: Mqtt
                tls:
                  automatic:
                    issuerRef:
                      apiGroup: cert-manager.io
                      kind: Issuer
                      name: mq-dmqtt-frontend
                  mode: Automatic
            serviceName: aio-mq-dmqtt-frontend
            serviceType: ClusterIp
          resourceGroupName: rgiotoperations
    

    Create BrokerListener Resource

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

    Constructor syntax

    new BrokerListener(name: string, args: BrokerListenerArgs, opts?: CustomResourceOptions);
    @overload
    def BrokerListener(resource_name: str,
                       args: BrokerListenerArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def BrokerListener(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       broker_name: Optional[str] = None,
                       extended_location: Optional[ExtendedLocationArgs] = None,
                       instance_name: Optional[str] = None,
                       resource_group_name: Optional[str] = None,
                       listener_name: Optional[str] = None,
                       properties: Optional[BrokerListenerPropertiesArgs] = None)
    func NewBrokerListener(ctx *Context, name string, args BrokerListenerArgs, opts ...ResourceOption) (*BrokerListener, error)
    public BrokerListener(string name, BrokerListenerArgs args, CustomResourceOptions? opts = null)
    public BrokerListener(String name, BrokerListenerArgs args)
    public BrokerListener(String name, BrokerListenerArgs args, CustomResourceOptions options)
    
    type: azure-native:iotoperations:BrokerListener
    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 BrokerListenerArgs
    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 BrokerListenerArgs
    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 BrokerListenerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BrokerListenerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BrokerListenerArgs
    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 brokerListenerResource = new AzureNative.IoTOperations.BrokerListener("brokerListenerResource", new()
    {
        BrokerName = "string",
        ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        InstanceName = "string",
        ResourceGroupName = "string",
        ListenerName = "string",
        Properties = new AzureNative.IoTOperations.Inputs.BrokerListenerPropertiesArgs
        {
            BrokerRef = "string",
            Ports = new[]
            {
                new AzureNative.IoTOperations.Inputs.ListenerPortArgs
                {
                    Port = 0,
                    AuthenticationRef = "string",
                    AuthorizationRef = "string",
                    NodePort = 0,
                    Protocol = "string",
                    Tls = new AzureNative.IoTOperations.Inputs.TlsCertMethodArgs
                    {
                        Mode = "string",
                        Automatic = new AzureNative.IoTOperations.Inputs.AutomaticCertMethodArgs
                        {
                            IssuerRef = new AzureNative.IoTOperations.Inputs.CertManagerIssuerRefArgs
                            {
                                ApiGroup = "string",
                                Kind = "string",
                                Name = "string",
                            },
                            Duration = "string",
                            PrivateKey = new AzureNative.IoTOperations.Inputs.CertManagerPrivateKeyArgs
                            {
                                Algorithm = "string",
                                RotationPolicy = "string",
                            },
                            RenewBefore = "string",
                            San = new AzureNative.IoTOperations.Inputs.SanForCertArgs
                            {
                                Dns = new[]
                                {
                                    "string",
                                },
                                Ip = new[]
                                {
                                    "string",
                                },
                            },
                            SecretRef = "string",
                        },
                        Manual = new AzureNative.IoTOperations.Inputs.X509ManualCertificateArgs
                        {
                            SecretRef = "string",
                        },
                    },
                },
            },
            ServiceName = "string",
            ServiceType = "string",
        },
    });
    
    example, err := iotoperations.NewBrokerListener(ctx, "brokerListenerResource", &iotoperations.BrokerListenerArgs{
    	BrokerName: pulumi.String("string"),
    	ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	InstanceName:      pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	ListenerName:      pulumi.String("string"),
    	Properties: &iotoperations.BrokerListenerPropertiesArgs{
    		BrokerRef: pulumi.String("string"),
    		Ports: iotoperations.ListenerPortArray{
    			&iotoperations.ListenerPortArgs{
    				Port:              pulumi.Int(0),
    				AuthenticationRef: pulumi.String("string"),
    				AuthorizationRef:  pulumi.String("string"),
    				NodePort:          pulumi.Int(0),
    				Protocol:          pulumi.String("string"),
    				Tls: &iotoperations.TlsCertMethodArgs{
    					Mode: pulumi.String("string"),
    					Automatic: &iotoperations.AutomaticCertMethodArgs{
    						IssuerRef: &iotoperations.CertManagerIssuerRefArgs{
    							ApiGroup: pulumi.String("string"),
    							Kind:     pulumi.String("string"),
    							Name:     pulumi.String("string"),
    						},
    						Duration: pulumi.String("string"),
    						PrivateKey: &iotoperations.CertManagerPrivateKeyArgs{
    							Algorithm:      pulumi.String("string"),
    							RotationPolicy: pulumi.String("string"),
    						},
    						RenewBefore: pulumi.String("string"),
    						San: &iotoperations.SanForCertArgs{
    							Dns: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							Ip: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    						SecretRef: pulumi.String("string"),
    					},
    					Manual: &iotoperations.X509ManualCertificateArgs{
    						SecretRef: pulumi.String("string"),
    					},
    				},
    			},
    		},
    		ServiceName: pulumi.String("string"),
    		ServiceType: pulumi.String("string"),
    	},
    })
    
    var brokerListenerResource = new BrokerListener("brokerListenerResource", BrokerListenerArgs.builder()
        .brokerName("string")
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .instanceName("string")
        .resourceGroupName("string")
        .listenerName("string")
        .properties(BrokerListenerPropertiesArgs.builder()
            .brokerRef("string")
            .ports(ListenerPortArgs.builder()
                .port(0)
                .authenticationRef("string")
                .authorizationRef("string")
                .nodePort(0)
                .protocol("string")
                .tls(TlsCertMethodArgs.builder()
                    .mode("string")
                    .automatic(AutomaticCertMethodArgs.builder()
                        .issuerRef(CertManagerIssuerRefArgs.builder()
                            .apiGroup("string")
                            .kind("string")
                            .name("string")
                            .build())
                        .duration("string")
                        .privateKey(CertManagerPrivateKeyArgs.builder()
                            .algorithm("string")
                            .rotationPolicy("string")
                            .build())
                        .renewBefore("string")
                        .san(SanForCertArgs.builder()
                            .dns("string")
                            .ip("string")
                            .build())
                        .secretRef("string")
                        .build())
                    .manual(X509ManualCertificateArgs.builder()
                        .secretRef("string")
                        .build())
                    .build())
                .build())
            .serviceName("string")
            .serviceType("string")
            .build())
        .build());
    
    broker_listener_resource = azure_native.iotoperations.BrokerListener("brokerListenerResource",
        broker_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        instance_name="string",
        resource_group_name="string",
        listener_name="string",
        properties={
            "brokerRef": "string",
            "ports": [{
                "port": 0,
                "authenticationRef": "string",
                "authorizationRef": "string",
                "nodePort": 0,
                "protocol": "string",
                "tls": {
                    "mode": "string",
                    "automatic": {
                        "issuerRef": {
                            "apiGroup": "string",
                            "kind": "string",
                            "name": "string",
                        },
                        "duration": "string",
                        "privateKey": {
                            "algorithm": "string",
                            "rotationPolicy": "string",
                        },
                        "renewBefore": "string",
                        "san": {
                            "dns": ["string"],
                            "ip": ["string"],
                        },
                        "secretRef": "string",
                    },
                    "manual": {
                        "secretRef": "string",
                    },
                },
            }],
            "serviceName": "string",
            "serviceType": "string",
        })
    
    const brokerListenerResource = new azure_native.iotoperations.BrokerListener("brokerListenerResource", {
        brokerName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        instanceName: "string",
        resourceGroupName: "string",
        listenerName: "string",
        properties: {
            brokerRef: "string",
            ports: [{
                port: 0,
                authenticationRef: "string",
                authorizationRef: "string",
                nodePort: 0,
                protocol: "string",
                tls: {
                    mode: "string",
                    automatic: {
                        issuerRef: {
                            apiGroup: "string",
                            kind: "string",
                            name: "string",
                        },
                        duration: "string",
                        privateKey: {
                            algorithm: "string",
                            rotationPolicy: "string",
                        },
                        renewBefore: "string",
                        san: {
                            dns: ["string"],
                            ip: ["string"],
                        },
                        secretRef: "string",
                    },
                    manual: {
                        secretRef: "string",
                    },
                },
            }],
            serviceName: "string",
            serviceType: "string",
        },
    });
    
    type: azure-native:iotoperations:BrokerListener
    properties:
        brokerName: string
        extendedLocation:
            name: string
            type: string
        instanceName: string
        listenerName: string
        properties:
            brokerRef: string
            ports:
                - authenticationRef: string
                  authorizationRef: string
                  nodePort: 0
                  port: 0
                  protocol: string
                  tls:
                    automatic:
                        duration: string
                        issuerRef:
                            apiGroup: string
                            kind: string
                            name: string
                        privateKey:
                            algorithm: string
                            rotationPolicy: string
                        renewBefore: string
                        san:
                            dns:
                                - string
                            ip:
                                - string
                        secretRef: string
                    manual:
                        secretRef: string
                    mode: string
            serviceName: string
            serviceType: string
        resourceGroupName: string
    

    BrokerListener Resource Properties

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

    Inputs

    The BrokerListener resource accepts the following input properties:

    BrokerName string
    Name of broker.
    ExtendedLocation Pulumi.AzureNative.IoTOperations.Inputs.ExtendedLocation
    Edge location of the resource.
    InstanceName string
    Name of instance.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ListenerName string
    Name of Instance broker listener resource
    Properties Pulumi.AzureNative.IoTOperations.Inputs.BrokerListenerProperties
    The resource-specific properties for this resource.
    BrokerName string
    Name of broker.
    ExtendedLocation ExtendedLocationArgs
    Edge location of the resource.
    InstanceName string
    Name of instance.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ListenerName string
    Name of Instance broker listener resource
    Properties BrokerListenerPropertiesArgs
    The resource-specific properties for this resource.
    brokerName String
    Name of broker.
    extendedLocation ExtendedLocation
    Edge location of the resource.
    instanceName String
    Name of instance.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    listenerName String
    Name of Instance broker listener resource
    properties BrokerListenerProperties
    The resource-specific properties for this resource.
    brokerName string
    Name of broker.
    extendedLocation ExtendedLocation
    Edge location of the resource.
    instanceName string
    Name of instance.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    listenerName string
    Name of Instance broker listener resource
    properties BrokerListenerProperties
    The resource-specific properties for this resource.
    broker_name str
    Name of broker.
    extended_location ExtendedLocationArgs
    Edge location of the resource.
    instance_name str
    Name of instance.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    listener_name str
    Name of Instance broker listener resource
    properties BrokerListenerPropertiesArgs
    The resource-specific properties for this resource.
    brokerName String
    Name of broker.
    extendedLocation Property Map
    Edge location of the resource.
    instanceName String
    Name of instance.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    listenerName String
    Name of Instance broker listener resource
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

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

    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"
    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"
    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"
    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"
    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"
    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

    AutomaticCertMethod, AutomaticCertMethodArgs

    IssuerRef Pulumi.AzureNative.IoTOperations.Inputs.CertManagerIssuerRef
    cert-manager issuerRef.
    Duration string
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    PrivateKey Pulumi.AzureNative.IoTOperations.Inputs.CertManagerPrivateKey
    Type of certificate private key.
    RenewBefore string
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    San Pulumi.AzureNative.IoTOperations.Inputs.SanForCert
    Additional Subject Alternative Names (SANs) to include in the certificate.
    SecretRef string
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    IssuerRef CertManagerIssuerRef
    cert-manager issuerRef.
    Duration string
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    PrivateKey CertManagerPrivateKey
    Type of certificate private key.
    RenewBefore string
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    San SanForCert
    Additional Subject Alternative Names (SANs) to include in the certificate.
    SecretRef string
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    issuerRef CertManagerIssuerRef
    cert-manager issuerRef.
    duration String
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    privateKey CertManagerPrivateKey
    Type of certificate private key.
    renewBefore String
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    san SanForCert
    Additional Subject Alternative Names (SANs) to include in the certificate.
    secretRef String
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    issuerRef CertManagerIssuerRef
    cert-manager issuerRef.
    duration string
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    privateKey CertManagerPrivateKey
    Type of certificate private key.
    renewBefore string
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    san SanForCert
    Additional Subject Alternative Names (SANs) to include in the certificate.
    secretRef string
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    issuer_ref CertManagerIssuerRef
    cert-manager issuerRef.
    duration str
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    private_key CertManagerPrivateKey
    Type of certificate private key.
    renew_before str
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    san SanForCert
    Additional Subject Alternative Names (SANs) to include in the certificate.
    secret_ref str
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    issuerRef Property Map
    cert-manager issuerRef.
    duration String
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    privateKey Property Map
    Type of certificate private key.
    renewBefore String
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    san Property Map
    Additional Subject Alternative Names (SANs) to include in the certificate.
    secretRef String
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.

    AutomaticCertMethodResponse, AutomaticCertMethodResponseArgs

    IssuerRef Pulumi.AzureNative.IoTOperations.Inputs.CertManagerIssuerRefResponse
    cert-manager issuerRef.
    Duration string
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    PrivateKey Pulumi.AzureNative.IoTOperations.Inputs.CertManagerPrivateKeyResponse
    Type of certificate private key.
    RenewBefore string
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    San Pulumi.AzureNative.IoTOperations.Inputs.SanForCertResponse
    Additional Subject Alternative Names (SANs) to include in the certificate.
    SecretRef string
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    IssuerRef CertManagerIssuerRefResponse
    cert-manager issuerRef.
    Duration string
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    PrivateKey CertManagerPrivateKeyResponse
    Type of certificate private key.
    RenewBefore string
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    San SanForCertResponse
    Additional Subject Alternative Names (SANs) to include in the certificate.
    SecretRef string
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    issuerRef CertManagerIssuerRefResponse
    cert-manager issuerRef.
    duration String
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    privateKey CertManagerPrivateKeyResponse
    Type of certificate private key.
    renewBefore String
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    san SanForCertResponse
    Additional Subject Alternative Names (SANs) to include in the certificate.
    secretRef String
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    issuerRef CertManagerIssuerRefResponse
    cert-manager issuerRef.
    duration string
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    privateKey CertManagerPrivateKeyResponse
    Type of certificate private key.
    renewBefore string
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    san SanForCertResponse
    Additional Subject Alternative Names (SANs) to include in the certificate.
    secretRef string
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    issuer_ref CertManagerIssuerRefResponse
    cert-manager issuerRef.
    duration str
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    private_key CertManagerPrivateKeyResponse
    Type of certificate private key.
    renew_before str
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    san SanForCertResponse
    Additional Subject Alternative Names (SANs) to include in the certificate.
    secret_ref str
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.
    issuerRef Property Map
    cert-manager issuerRef.
    duration String
    Lifetime of certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    privateKey Property Map
    Type of certificate private key.
    renewBefore String
    When to begin renewing certificate. Must be specified using a Go time.Duration format (h|m|s). E.g. 240h for 240 hours and 45m for 45 minutes.
    san Property Map
    Additional Subject Alternative Names (SANs) to include in the certificate.
    secretRef String
    Secret for storing server certificate. Any existing data will be overwritten. This is a reference to the secret through an identifying name, not the secret itself.

    BrokerListenerProperties, BrokerListenerPropertiesArgs

    BrokerRef string
    Broker associated with this listener.
    Ports List<Pulumi.AzureNative.IoTOperations.Inputs.ListenerPort>
    Ports on which this listener accepts client connections.
    ServiceName string
    Kubernetes Service name of this listener.
    ServiceType string | Pulumi.AzureNative.IoTOperations.ServiceType
    Kubernetes Service type of this listener.
    BrokerRef string
    Broker associated with this listener.
    Ports []ListenerPort
    Ports on which this listener accepts client connections.
    ServiceName string
    Kubernetes Service name of this listener.
    ServiceType string | ServiceType
    Kubernetes Service type of this listener.
    brokerRef String
    Broker associated with this listener.
    ports List<ListenerPort>
    Ports on which this listener accepts client connections.
    serviceName String
    Kubernetes Service name of this listener.
    serviceType String | ServiceType
    Kubernetes Service type of this listener.
    brokerRef string
    Broker associated with this listener.
    ports ListenerPort[]
    Ports on which this listener accepts client connections.
    serviceName string
    Kubernetes Service name of this listener.
    serviceType string | ServiceType
    Kubernetes Service type of this listener.
    broker_ref str
    Broker associated with this listener.
    ports Sequence[ListenerPort]
    Ports on which this listener accepts client connections.
    service_name str
    Kubernetes Service name of this listener.
    service_type str | ServiceType
    Kubernetes Service type of this listener.
    brokerRef String
    Broker associated with this listener.
    ports List<Property Map>
    Ports on which this listener accepts client connections.
    serviceName String
    Kubernetes Service name of this listener.
    serviceType String | "ClusterIp" | "LoadBalancer" | "NodePort"
    Kubernetes Service type of this listener.

    BrokerListenerPropertiesResponse, BrokerListenerPropertiesResponseArgs

    BrokerRef string
    Broker associated with this listener.
    Ports List<Pulumi.AzureNative.IoTOperations.Inputs.ListenerPortResponse>
    Ports on which this listener accepts client connections.
    ProvisioningState string
    The status of the last operation.
    ServiceName string
    Kubernetes Service name of this listener.
    ServiceType string
    Kubernetes Service type of this listener.
    BrokerRef string
    Broker associated with this listener.
    Ports []ListenerPortResponse
    Ports on which this listener accepts client connections.
    ProvisioningState string
    The status of the last operation.
    ServiceName string
    Kubernetes Service name of this listener.
    ServiceType string
    Kubernetes Service type of this listener.
    brokerRef String
    Broker associated with this listener.
    ports List<ListenerPortResponse>
    Ports on which this listener accepts client connections.
    provisioningState String
    The status of the last operation.
    serviceName String
    Kubernetes Service name of this listener.
    serviceType String
    Kubernetes Service type of this listener.
    brokerRef string
    Broker associated with this listener.
    ports ListenerPortResponse[]
    Ports on which this listener accepts client connections.
    provisioningState string
    The status of the last operation.
    serviceName string
    Kubernetes Service name of this listener.
    serviceType string
    Kubernetes Service type of this listener.
    broker_ref str
    Broker associated with this listener.
    ports Sequence[ListenerPortResponse]
    Ports on which this listener accepts client connections.
    provisioning_state str
    The status of the last operation.
    service_name str
    Kubernetes Service name of this listener.
    service_type str
    Kubernetes Service type of this listener.
    brokerRef String
    Broker associated with this listener.
    ports List<Property Map>
    Ports on which this listener accepts client connections.
    provisioningState String
    The status of the last operation.
    serviceName String
    Kubernetes Service name of this listener.
    serviceType String
    Kubernetes Service type of this listener.

    BrokerProtocolType, BrokerProtocolTypeArgs

    Mqtt
    Mqttprotocol broker
    WebSockets
    WebSocketsprotocol websocket
    BrokerProtocolTypeMqtt
    Mqttprotocol broker
    BrokerProtocolTypeWebSockets
    WebSocketsprotocol websocket
    Mqtt
    Mqttprotocol broker
    WebSockets
    WebSocketsprotocol websocket
    Mqtt
    Mqttprotocol broker
    WebSockets
    WebSocketsprotocol websocket
    MQTT
    Mqttprotocol broker
    WEB_SOCKETS
    WebSocketsprotocol websocket
    "Mqtt"
    Mqttprotocol broker
    "WebSockets"
    WebSocketsprotocol websocket

    CertManagerIssuerKind, CertManagerIssuerKindArgs

    Issuer
    IssuerIssuer kind.
    ClusterIssuer
    ClusterIssuerClusterIssuer kind.
    CertManagerIssuerKindIssuer
    IssuerIssuer kind.
    CertManagerIssuerKindClusterIssuer
    ClusterIssuerClusterIssuer kind.
    Issuer
    IssuerIssuer kind.
    ClusterIssuer
    ClusterIssuerClusterIssuer kind.
    Issuer
    IssuerIssuer kind.
    ClusterIssuer
    ClusterIssuerClusterIssuer kind.
    ISSUER
    IssuerIssuer kind.
    CLUSTER_ISSUER
    ClusterIssuerClusterIssuer kind.
    "Issuer"
    IssuerIssuer kind.
    "ClusterIssuer"
    ClusterIssuerClusterIssuer kind.

    CertManagerIssuerRef, CertManagerIssuerRefArgs

    ApiGroup string
    group of issuer.
    Kind string | Pulumi.AzureNative.IoTOperations.CertManagerIssuerKind
    kind of issuer (Issuer or ClusterIssuer).
    Name string
    name of issuer.
    ApiGroup string
    group of issuer.
    Kind string | CertManagerIssuerKind
    kind of issuer (Issuer or ClusterIssuer).
    Name string
    name of issuer.
    apiGroup String
    group of issuer.
    kind String | CertManagerIssuerKind
    kind of issuer (Issuer or ClusterIssuer).
    name String
    name of issuer.
    apiGroup string
    group of issuer.
    kind string | CertManagerIssuerKind
    kind of issuer (Issuer or ClusterIssuer).
    name string
    name of issuer.
    api_group str
    group of issuer.
    kind str | CertManagerIssuerKind
    kind of issuer (Issuer or ClusterIssuer).
    name str
    name of issuer.
    apiGroup String
    group of issuer.
    kind String | "Issuer" | "ClusterIssuer"
    kind of issuer (Issuer or ClusterIssuer).
    name String
    name of issuer.

    CertManagerIssuerRefResponse, CertManagerIssuerRefResponseArgs

    ApiGroup string
    group of issuer.
    Kind string
    kind of issuer (Issuer or ClusterIssuer).
    Name string
    name of issuer.
    ApiGroup string
    group of issuer.
    Kind string
    kind of issuer (Issuer or ClusterIssuer).
    Name string
    name of issuer.
    apiGroup String
    group of issuer.
    kind String
    kind of issuer (Issuer or ClusterIssuer).
    name String
    name of issuer.
    apiGroup string
    group of issuer.
    kind string
    kind of issuer (Issuer or ClusterIssuer).
    name string
    name of issuer.
    api_group str
    group of issuer.
    kind str
    kind of issuer (Issuer or ClusterIssuer).
    name str
    name of issuer.
    apiGroup String
    group of issuer.
    kind String
    kind of issuer (Issuer or ClusterIssuer).
    name String
    name of issuer.

    CertManagerPrivateKey, CertManagerPrivateKeyArgs

    Algorithm string | PrivateKeyAlgorithm
    algorithm for private key.
    RotationPolicy string | PrivateKeyRotationPolicy
    cert-manager private key rotationPolicy.
    algorithm String | PrivateKeyAlgorithm
    algorithm for private key.
    rotationPolicy String | PrivateKeyRotationPolicy
    cert-manager private key rotationPolicy.
    algorithm string | PrivateKeyAlgorithm
    algorithm for private key.
    rotationPolicy string | PrivateKeyRotationPolicy
    cert-manager private key rotationPolicy.
    algorithm str | PrivateKeyAlgorithm
    algorithm for private key.
    rotation_policy str | PrivateKeyRotationPolicy
    cert-manager private key rotationPolicy.
    algorithm String | "Ec256" | "Ec384" | "Ec521" | "Ed25519" | "Rsa2048" | "Rsa4096" | "Rsa8192"
    algorithm for private key.
    rotationPolicy String | "Always" | "Never"
    cert-manager private key rotationPolicy.

    CertManagerPrivateKeyResponse, CertManagerPrivateKeyResponseArgs

    Algorithm string
    algorithm for private key.
    RotationPolicy string
    cert-manager private key rotationPolicy.
    Algorithm string
    algorithm for private key.
    RotationPolicy string
    cert-manager private key rotationPolicy.
    algorithm String
    algorithm for private key.
    rotationPolicy String
    cert-manager private key rotationPolicy.
    algorithm string
    algorithm for private key.
    rotationPolicy string
    cert-manager private key rotationPolicy.
    algorithm str
    algorithm for private key.
    rotation_policy str
    cert-manager private key rotationPolicy.
    algorithm String
    algorithm for private key.
    rotationPolicy String
    cert-manager private key rotationPolicy.

    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

    ListenerPort, ListenerPortArgs

    Port int
    TCP port for accepting client connections.
    AuthenticationRef string
    Reference to client authentication settings. Omit to disable authentication.
    AuthorizationRef string
    Reference to client authorization settings. Omit to disable authorization.
    NodePort int
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    Protocol string | Pulumi.AzureNative.IoTOperations.BrokerProtocolType
    Protocol to use for client connections.
    Tls Pulumi.AzureNative.IoTOperations.Inputs.TlsCertMethod
    TLS server certificate settings for this port. Omit to disable TLS.
    Port int
    TCP port for accepting client connections.
    AuthenticationRef string
    Reference to client authentication settings. Omit to disable authentication.
    AuthorizationRef string
    Reference to client authorization settings. Omit to disable authorization.
    NodePort int
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    Protocol string | BrokerProtocolType
    Protocol to use for client connections.
    Tls TlsCertMethod
    TLS server certificate settings for this port. Omit to disable TLS.
    port Integer
    TCP port for accepting client connections.
    authenticationRef String
    Reference to client authentication settings. Omit to disable authentication.
    authorizationRef String
    Reference to client authorization settings. Omit to disable authorization.
    nodePort Integer
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    protocol String | BrokerProtocolType
    Protocol to use for client connections.
    tls TlsCertMethod
    TLS server certificate settings for this port. Omit to disable TLS.
    port number
    TCP port for accepting client connections.
    authenticationRef string
    Reference to client authentication settings. Omit to disable authentication.
    authorizationRef string
    Reference to client authorization settings. Omit to disable authorization.
    nodePort number
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    protocol string | BrokerProtocolType
    Protocol to use for client connections.
    tls TlsCertMethod
    TLS server certificate settings for this port. Omit to disable TLS.
    port int
    TCP port for accepting client connections.
    authentication_ref str
    Reference to client authentication settings. Omit to disable authentication.
    authorization_ref str
    Reference to client authorization settings. Omit to disable authorization.
    node_port int
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    protocol str | BrokerProtocolType
    Protocol to use for client connections.
    tls TlsCertMethod
    TLS server certificate settings for this port. Omit to disable TLS.
    port Number
    TCP port for accepting client connections.
    authenticationRef String
    Reference to client authentication settings. Omit to disable authentication.
    authorizationRef String
    Reference to client authorization settings. Omit to disable authorization.
    nodePort Number
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    protocol String | "Mqtt" | "WebSockets"
    Protocol to use for client connections.
    tls Property Map
    TLS server certificate settings for this port. Omit to disable TLS.

    ListenerPortResponse, ListenerPortResponseArgs

    Port int
    TCP port for accepting client connections.
    AuthenticationRef string
    Reference to client authentication settings. Omit to disable authentication.
    AuthorizationRef string
    Reference to client authorization settings. Omit to disable authorization.
    NodePort int
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    Protocol string
    Protocol to use for client connections.
    Tls Pulumi.AzureNative.IoTOperations.Inputs.TlsCertMethodResponse
    TLS server certificate settings for this port. Omit to disable TLS.
    Port int
    TCP port for accepting client connections.
    AuthenticationRef string
    Reference to client authentication settings. Omit to disable authentication.
    AuthorizationRef string
    Reference to client authorization settings. Omit to disable authorization.
    NodePort int
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    Protocol string
    Protocol to use for client connections.
    Tls TlsCertMethodResponse
    TLS server certificate settings for this port. Omit to disable TLS.
    port Integer
    TCP port for accepting client connections.
    authenticationRef String
    Reference to client authentication settings. Omit to disable authentication.
    authorizationRef String
    Reference to client authorization settings. Omit to disable authorization.
    nodePort Integer
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    protocol String
    Protocol to use for client connections.
    tls TlsCertMethodResponse
    TLS server certificate settings for this port. Omit to disable TLS.
    port number
    TCP port for accepting client connections.
    authenticationRef string
    Reference to client authentication settings. Omit to disable authentication.
    authorizationRef string
    Reference to client authorization settings. Omit to disable authorization.
    nodePort number
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    protocol string
    Protocol to use for client connections.
    tls TlsCertMethodResponse
    TLS server certificate settings for this port. Omit to disable TLS.
    port int
    TCP port for accepting client connections.
    authentication_ref str
    Reference to client authentication settings. Omit to disable authentication.
    authorization_ref str
    Reference to client authorization settings. Omit to disable authorization.
    node_port int
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    protocol str
    Protocol to use for client connections.
    tls TlsCertMethodResponse
    TLS server certificate settings for this port. Omit to disable TLS.
    port Number
    TCP port for accepting client connections.
    authenticationRef String
    Reference to client authentication settings. Omit to disable authentication.
    authorizationRef String
    Reference to client authorization settings. Omit to disable authorization.
    nodePort Number
    Kubernetes node port. Only relevant when this port is associated with a NodePort listener.
    protocol String
    Protocol to use for client connections.
    tls Property Map
    TLS server certificate settings for this port. Omit to disable TLS.

    PrivateKeyAlgorithm, PrivateKeyAlgorithmArgs

    Ec256
    Ec256Algorithm - ec256.
    Ec384
    Ec384Algorithm - ec384.
    Ec521
    Ec521Algorithm - ec521.
    Ed25519
    Ed25519Algorithm - ed25519.
    Rsa2048
    Rsa2048Algorithm - rsa2048.
    Rsa4096
    Rsa4096Algorithm - rsa4096.
    Rsa8192
    Rsa8192Algorithm - rsa8192.
    PrivateKeyAlgorithmEc256
    Ec256Algorithm - ec256.
    PrivateKeyAlgorithmEc384
    Ec384Algorithm - ec384.
    PrivateKeyAlgorithmEc521
    Ec521Algorithm - ec521.
    PrivateKeyAlgorithmEd25519
    Ed25519Algorithm - ed25519.
    PrivateKeyAlgorithmRsa2048
    Rsa2048Algorithm - rsa2048.
    PrivateKeyAlgorithmRsa4096
    Rsa4096Algorithm - rsa4096.
    PrivateKeyAlgorithmRsa8192
    Rsa8192Algorithm - rsa8192.
    Ec256
    Ec256Algorithm - ec256.
    Ec384
    Ec384Algorithm - ec384.
    Ec521
    Ec521Algorithm - ec521.
    Ed25519
    Ed25519Algorithm - ed25519.
    Rsa2048
    Rsa2048Algorithm - rsa2048.
    Rsa4096
    Rsa4096Algorithm - rsa4096.
    Rsa8192
    Rsa8192Algorithm - rsa8192.
    Ec256
    Ec256Algorithm - ec256.
    Ec384
    Ec384Algorithm - ec384.
    Ec521
    Ec521Algorithm - ec521.
    Ed25519
    Ed25519Algorithm - ed25519.
    Rsa2048
    Rsa2048Algorithm - rsa2048.
    Rsa4096
    Rsa4096Algorithm - rsa4096.
    Rsa8192
    Rsa8192Algorithm - rsa8192.
    EC256
    Ec256Algorithm - ec256.
    EC384
    Ec384Algorithm - ec384.
    EC521
    Ec521Algorithm - ec521.
    ED25519
    Ed25519Algorithm - ed25519.
    RSA2048
    Rsa2048Algorithm - rsa2048.
    RSA4096
    Rsa4096Algorithm - rsa4096.
    RSA8192
    Rsa8192Algorithm - rsa8192.
    "Ec256"
    Ec256Algorithm - ec256.
    "Ec384"
    Ec384Algorithm - ec384.
    "Ec521"
    Ec521Algorithm - ec521.
    "Ed25519"
    Ed25519Algorithm - ed25519.
    "Rsa2048"
    Rsa2048Algorithm - rsa2048.
    "Rsa4096"
    Rsa4096Algorithm - rsa4096.
    "Rsa8192"
    Rsa8192Algorithm - rsa8192.

    PrivateKeyRotationPolicy, PrivateKeyRotationPolicyArgs

    Always
    AlwaysRotation Policy - Always.
    Never
    NeverRotation Policy - Never.
    PrivateKeyRotationPolicyAlways
    AlwaysRotation Policy - Always.
    PrivateKeyRotationPolicyNever
    NeverRotation Policy - Never.
    Always
    AlwaysRotation Policy - Always.
    Never
    NeverRotation Policy - Never.
    Always
    AlwaysRotation Policy - Always.
    Never
    NeverRotation Policy - Never.
    ALWAYS
    AlwaysRotation Policy - Always.
    NEVER
    NeverRotation Policy - Never.
    "Always"
    AlwaysRotation Policy - Always.
    "Never"
    NeverRotation Policy - Never.

    SanForCert, SanForCertArgs

    Dns List<string>
    DNS SANs.
    Ip List<string>
    IP address SANs.
    Dns []string
    DNS SANs.
    Ip []string
    IP address SANs.
    dns List<String>
    DNS SANs.
    ip List<String>
    IP address SANs.
    dns string[]
    DNS SANs.
    ip string[]
    IP address SANs.
    dns Sequence[str]
    DNS SANs.
    ip Sequence[str]
    IP address SANs.
    dns List<String>
    DNS SANs.
    ip List<String>
    IP address SANs.

    SanForCertResponse, SanForCertResponseArgs

    Dns List<string>
    DNS SANs.
    Ip List<string>
    IP address SANs.
    Dns []string
    DNS SANs.
    Ip []string
    IP address SANs.
    dns List<String>
    DNS SANs.
    ip List<String>
    IP address SANs.
    dns string[]
    DNS SANs.
    ip string[]
    IP address SANs.
    dns Sequence[str]
    DNS SANs.
    ip Sequence[str]
    IP address SANs.
    dns List<String>
    DNS SANs.
    ip List<String>
    IP address SANs.

    ServiceType, ServiceTypeArgs

    ClusterIp
    ClusterIpCluster IP Service.
    LoadBalancer
    LoadBalancerLoad Balancer Service.
    NodePort
    NodePortNode Port Service.
    ServiceTypeClusterIp
    ClusterIpCluster IP Service.
    ServiceTypeLoadBalancer
    LoadBalancerLoad Balancer Service.
    ServiceTypeNodePort
    NodePortNode Port Service.
    ClusterIp
    ClusterIpCluster IP Service.
    LoadBalancer
    LoadBalancerLoad Balancer Service.
    NodePort
    NodePortNode Port Service.
    ClusterIp
    ClusterIpCluster IP Service.
    LoadBalancer
    LoadBalancerLoad Balancer Service.
    NodePort
    NodePortNode Port Service.
    CLUSTER_IP
    ClusterIpCluster IP Service.
    LOAD_BALANCER
    LoadBalancerLoad Balancer Service.
    NODE_PORT
    NodePortNode Port Service.
    "ClusterIp"
    ClusterIpCluster IP Service.
    "LoadBalancer"
    LoadBalancerLoad Balancer Service.
    "NodePort"
    NodePortNode Port Service.

    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.

    TlsCertMethod, TlsCertMethodArgs

    Mode string | Pulumi.AzureNative.IoTOperations.TlsCertMethodMode
    Mode of TLS server certificate management.
    Automatic Pulumi.AzureNative.IoTOperations.Inputs.AutomaticCertMethod
    Option 1 - Automatic TLS server certificate management with cert-manager.
    Manual Pulumi.AzureNative.IoTOperations.Inputs.X509ManualCertificate
    Option 2 - Manual TLS server certificate management through a defined secret.
    Mode string | TlsCertMethodMode
    Mode of TLS server certificate management.
    Automatic AutomaticCertMethod
    Option 1 - Automatic TLS server certificate management with cert-manager.
    Manual X509ManualCertificate
    Option 2 - Manual TLS server certificate management through a defined secret.
    mode String | TlsCertMethodMode
    Mode of TLS server certificate management.
    automatic AutomaticCertMethod
    Option 1 - Automatic TLS server certificate management with cert-manager.
    manual X509ManualCertificate
    Option 2 - Manual TLS server certificate management through a defined secret.
    mode string | TlsCertMethodMode
    Mode of TLS server certificate management.
    automatic AutomaticCertMethod
    Option 1 - Automatic TLS server certificate management with cert-manager.
    manual X509ManualCertificate
    Option 2 - Manual TLS server certificate management through a defined secret.
    mode str | TlsCertMethodMode
    Mode of TLS server certificate management.
    automatic AutomaticCertMethod
    Option 1 - Automatic TLS server certificate management with cert-manager.
    manual X509ManualCertificate
    Option 2 - Manual TLS server certificate management through a defined secret.
    mode String | "Automatic" | "Manual"
    Mode of TLS server certificate management.
    automatic Property Map
    Option 1 - Automatic TLS server certificate management with cert-manager.
    manual Property Map
    Option 2 - Manual TLS server certificate management through a defined secret.

    TlsCertMethodMode, TlsCertMethodModeArgs

    Automatic
    AutomaticAutomatic TLS server certificate configuration.
    Manual
    ManualManual TLS server certificate configuration.
    TlsCertMethodModeAutomatic
    AutomaticAutomatic TLS server certificate configuration.
    TlsCertMethodModeManual
    ManualManual TLS server certificate configuration.
    Automatic
    AutomaticAutomatic TLS server certificate configuration.
    Manual
    ManualManual TLS server certificate configuration.
    Automatic
    AutomaticAutomatic TLS server certificate configuration.
    Manual
    ManualManual TLS server certificate configuration.
    AUTOMATIC
    AutomaticAutomatic TLS server certificate configuration.
    MANUAL
    ManualManual TLS server certificate configuration.
    "Automatic"
    AutomaticAutomatic TLS server certificate configuration.
    "Manual"
    ManualManual TLS server certificate configuration.

    TlsCertMethodResponse, TlsCertMethodResponseArgs

    Mode string
    Mode of TLS server certificate management.
    Automatic Pulumi.AzureNative.IoTOperations.Inputs.AutomaticCertMethodResponse
    Option 1 - Automatic TLS server certificate management with cert-manager.
    Manual Pulumi.AzureNative.IoTOperations.Inputs.X509ManualCertificateResponse
    Option 2 - Manual TLS server certificate management through a defined secret.
    Mode string
    Mode of TLS server certificate management.
    Automatic AutomaticCertMethodResponse
    Option 1 - Automatic TLS server certificate management with cert-manager.
    Manual X509ManualCertificateResponse
    Option 2 - Manual TLS server certificate management through a defined secret.
    mode String
    Mode of TLS server certificate management.
    automatic AutomaticCertMethodResponse
    Option 1 - Automatic TLS server certificate management with cert-manager.
    manual X509ManualCertificateResponse
    Option 2 - Manual TLS server certificate management through a defined secret.
    mode string
    Mode of TLS server certificate management.
    automatic AutomaticCertMethodResponse
    Option 1 - Automatic TLS server certificate management with cert-manager.
    manual X509ManualCertificateResponse
    Option 2 - Manual TLS server certificate management through a defined secret.
    mode str
    Mode of TLS server certificate management.
    automatic AutomaticCertMethodResponse
    Option 1 - Automatic TLS server certificate management with cert-manager.
    manual X509ManualCertificateResponse
    Option 2 - Manual TLS server certificate management through a defined secret.
    mode String
    Mode of TLS server certificate management.
    automatic Property Map
    Option 1 - Automatic TLS server certificate management with cert-manager.
    manual Property Map
    Option 2 - Manual TLS server certificate management through a defined secret.

    X509ManualCertificate, X509ManualCertificateArgs

    SecretRef string
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    SecretRef string
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    secretRef String
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    secretRef string
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    secret_ref str
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    secretRef String
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.

    X509ManualCertificateResponse, X509ManualCertificateResponseArgs

    SecretRef string
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    SecretRef string
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    secretRef String
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    secretRef string
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    secret_ref str
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.
    secretRef String
    Kubernetes secret containing an X.509 client certificate. This is a reference to the secret through an identifying name, not the secret itself.

    Import

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

    $ pulumi import azure-native:iotoperations:BrokerListener jngsyyonj /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperations/instances/{instanceName}/brokers/{brokerName}/listeners/{listenerName} 
    

    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 v1 docs if using the v1 version of this package.
    Azure Native v2.63.0 published on Tuesday, Sep 24, 2024 by Pulumi