azure-native.iotoperations.AkriConnectorTemplate
Explore with Pulumi AI
AkriConnectorTemplate resource.
Uses Azure REST API version 2025-07-01-preview.
Example Usage
AkriConnectorTemplate_CreateOrUpdate_MaximumSet
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var akriConnectorTemplate = new AzureNative.IoTOperations.AkriConnectorTemplate("akriConnectorTemplate", new()
{
AkriConnectorTemplateName = "resource-name123",
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-name123",
Properties = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplatePropertiesArgs
{
AioMetadata = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateAioMetadataArgs
{
AioMaxVersion = "1.4.0",
AioMinVersion = "1.2.0",
},
DeviceInboundEndpointTypes = new[]
{
new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateDeviceInboundEndpointTypeArgs
{
EndpointType = "Microsoft.Rest",
Version = "0.0.1",
},
},
Diagnostics = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateDiagnosticsArgs
{
Logs = new AzureNative.IoTOperations.Inputs.AkriConnectorsDiagnosticsLogsArgs
{
Level = "info",
},
},
MqttConnectionConfiguration = new AzureNative.IoTOperations.Inputs.AkriConnectorsMqttConnectionConfigurationArgs
{
Authentication = new AzureNative.IoTOperations.Inputs.AkriConnectorsServiceAccountAuthenticationArgs
{
Method = "ServiceAccountToken",
ServiceAccountTokenSettings = new AzureNative.IoTOperations.Inputs.AkriConnectorsServiceAccountTokenSettingsArgs
{
Audience = "MQ-SAT",
},
},
Host = "aio-broker:18883",
KeepAliveSeconds = 10,
MaxInflightMessages = 10,
Protocol = AzureNative.IoTOperations.AkriConnectorsMqttProtocolType.Mqtt,
SessionExpirySeconds = 60,
Tls = new AzureNative.IoTOperations.Inputs.TlsPropertiesArgs
{
Mode = AzureNative.IoTOperations.OperationalMode.Enabled,
TrustedCaCertificateConfigMapRef = "azure-iot-operations-aio-ca-trust-bundle",
},
},
RuntimeConfiguration = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmConfigurationArgs
{
HelmConfigurationSettings = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmConfigurationSettingsArgs
{
ReleaseName = "my-install",
RepositoryName = "my-repo",
Version = "1.0.0",
},
RuntimeConfigurationType = "HelmConfiguration",
},
},
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.NewAkriConnectorTemplate(ctx, "akriConnectorTemplate", &iotoperations.AkriConnectorTemplateArgs{
AkriConnectorTemplateName: pulumi.String("resource-name123"),
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-name123"),
Properties: &iotoperations.AkriConnectorTemplatePropertiesArgs{
AioMetadata: &iotoperations.AkriConnectorTemplateAioMetadataArgs{
AioMaxVersion: pulumi.String("1.4.0"),
AioMinVersion: pulumi.String("1.2.0"),
},
DeviceInboundEndpointTypes: iotoperations.AkriConnectorTemplateDeviceInboundEndpointTypeArray{
&iotoperations.AkriConnectorTemplateDeviceInboundEndpointTypeArgs{
EndpointType: pulumi.String("Microsoft.Rest"),
Version: pulumi.String("0.0.1"),
},
},
Diagnostics: &iotoperations.AkriConnectorTemplateDiagnosticsArgs{
Logs: &iotoperations.AkriConnectorsDiagnosticsLogsArgs{
Level: pulumi.String("info"),
},
},
MqttConnectionConfiguration: &iotoperations.AkriConnectorsMqttConnectionConfigurationArgs{
Authentication: &iotoperations.AkriConnectorsServiceAccountAuthenticationArgs{
Method: pulumi.String("ServiceAccountToken"),
ServiceAccountTokenSettings: &iotoperations.AkriConnectorsServiceAccountTokenSettingsArgs{
Audience: pulumi.String("MQ-SAT"),
},
},
Host: pulumi.String("aio-broker:18883"),
KeepAliveSeconds: pulumi.Int(10),
MaxInflightMessages: pulumi.Int(10),
Protocol: pulumi.String(iotoperations.AkriConnectorsMqttProtocolTypeMqtt),
SessionExpirySeconds: pulumi.Int(60),
Tls: &iotoperations.TlsPropertiesArgs{
Mode: pulumi.String(iotoperations.OperationalModeEnabled),
TrustedCaCertificateConfigMapRef: pulumi.String("azure-iot-operations-aio-ca-trust-bundle"),
},
},
RuntimeConfiguration: iotoperations.AkriConnectorTemplateHelmConfiguration{
HelmConfigurationSettings: iotoperations.AkriConnectorTemplateHelmConfigurationSettings{
ReleaseName: "my-install",
RepositoryName: "my-repo",
Version: "1.0.0",
},
RuntimeConfigurationType: "HelmConfiguration",
},
},
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.AkriConnectorTemplate;
import com.pulumi.azurenative.iotoperations.AkriConnectorTemplateArgs;
import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.iotoperations.inputs.AkriConnectorTemplatePropertiesArgs;
import com.pulumi.azurenative.iotoperations.inputs.AkriConnectorTemplateAioMetadataArgs;
import com.pulumi.azurenative.iotoperations.inputs.AkriConnectorTemplateDiagnosticsArgs;
import com.pulumi.azurenative.iotoperations.inputs.AkriConnectorsDiagnosticsLogsArgs;
import com.pulumi.azurenative.iotoperations.inputs.AkriConnectorsMqttConnectionConfigurationArgs;
import com.pulumi.azurenative.iotoperations.inputs.AkriConnectorsServiceAccountAuthenticationArgs;
import com.pulumi.azurenative.iotoperations.inputs.AkriConnectorsServiceAccountTokenSettingsArgs;
import com.pulumi.azurenative.iotoperations.inputs.TlsPropertiesArgs;
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 akriConnectorTemplate = new AkriConnectorTemplate("akriConnectorTemplate", AkriConnectorTemplateArgs.builder()
.akriConnectorTemplateName("resource-name123")
.extendedLocation(ExtendedLocationArgs.builder()
.name("/subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123")
.type("CustomLocation")
.build())
.instanceName("resource-name123")
.properties(AkriConnectorTemplatePropertiesArgs.builder()
.aioMetadata(AkriConnectorTemplateAioMetadataArgs.builder()
.aioMaxVersion("1.4.0")
.aioMinVersion("1.2.0")
.build())
.deviceInboundEndpointTypes(AkriConnectorTemplateDeviceInboundEndpointTypeArgs.builder()
.endpointType("Microsoft.Rest")
.version("0.0.1")
.build())
.diagnostics(AkriConnectorTemplateDiagnosticsArgs.builder()
.logs(AkriConnectorsDiagnosticsLogsArgs.builder()
.level("info")
.build())
.build())
.mqttConnectionConfiguration(AkriConnectorsMqttConnectionConfigurationArgs.builder()
.authentication(Map.ofEntries(
Map.entry("method", "ServiceAccountToken"),
Map.entry("serviceAccountTokenSettings", AkriConnectorsServiceAccountTokenSettingsArgs.builder()
.audience("MQ-SAT")
.build())
))
.host("aio-broker:18883")
.keepAliveSeconds(10)
.maxInflightMessages(10)
.protocol("Mqtt")
.sessionExpirySeconds(60)
.tls(TlsPropertiesArgs.builder()
.mode("Enabled")
.trustedCaCertificateConfigMapRef("azure-iot-operations-aio-ca-trust-bundle")
.build())
.build())
.runtimeConfiguration(AkriConnectorTemplateHelmConfigurationArgs.builder()
.helmConfigurationSettings(AkriConnectorTemplateHelmConfigurationSettingsArgs.builder()
.releaseName("my-install")
.repositoryName("my-repo")
.version("1.0.0")
.build())
.runtimeConfigurationType("HelmConfiguration")
.build())
.build())
.resourceGroupName("rgiotoperations")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const akriConnectorTemplate = new azure_native.iotoperations.AkriConnectorTemplate("akriConnectorTemplate", {
akriConnectorTemplateName: "resource-name123",
extendedLocation: {
name: "/subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123",
type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
},
instanceName: "resource-name123",
properties: {
aioMetadata: {
aioMaxVersion: "1.4.0",
aioMinVersion: "1.2.0",
},
deviceInboundEndpointTypes: [{
endpointType: "Microsoft.Rest",
version: "0.0.1",
}],
diagnostics: {
logs: {
level: "info",
},
},
mqttConnectionConfiguration: {
authentication: {
method: "ServiceAccountToken",
serviceAccountTokenSettings: {
audience: "MQ-SAT",
},
},
host: "aio-broker:18883",
keepAliveSeconds: 10,
maxInflightMessages: 10,
protocol: azure_native.iotoperations.AkriConnectorsMqttProtocolType.Mqtt,
sessionExpirySeconds: 60,
tls: {
mode: azure_native.iotoperations.OperationalMode.Enabled,
trustedCaCertificateConfigMapRef: "azure-iot-operations-aio-ca-trust-bundle",
},
},
runtimeConfiguration: {
helmConfigurationSettings: {
releaseName: "my-install",
repositoryName: "my-repo",
version: "1.0.0",
},
runtimeConfigurationType: "HelmConfiguration",
},
},
resourceGroupName: "rgiotoperations",
});
import pulumi
import pulumi_azure_native as azure_native
akri_connector_template = azure_native.iotoperations.AkriConnectorTemplate("akriConnectorTemplate",
akri_connector_template_name="resource-name123",
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-name123",
properties={
"aio_metadata": {
"aio_max_version": "1.4.0",
"aio_min_version": "1.2.0",
},
"device_inbound_endpoint_types": [{
"endpoint_type": "Microsoft.Rest",
"version": "0.0.1",
}],
"diagnostics": {
"logs": {
"level": "info",
},
},
"mqtt_connection_configuration": {
"authentication": {
"method": "ServiceAccountToken",
"service_account_token_settings": {
"audience": "MQ-SAT",
},
},
"host": "aio-broker:18883",
"keep_alive_seconds": 10,
"max_inflight_messages": 10,
"protocol": azure_native.iotoperations.AkriConnectorsMqttProtocolType.MQTT,
"session_expiry_seconds": 60,
"tls": {
"mode": azure_native.iotoperations.OperationalMode.ENABLED,
"trusted_ca_certificate_config_map_ref": "azure-iot-operations-aio-ca-trust-bundle",
},
},
"runtime_configuration": {
"helm_configuration_settings": {
"release_name": "my-install",
"repository_name": "my-repo",
"version": "1.0.0",
},
"runtime_configuration_type": "HelmConfiguration",
},
},
resource_group_name="rgiotoperations")
resources:
akriConnectorTemplate:
type: azure-native:iotoperations:AkriConnectorTemplate
properties:
akriConnectorTemplateName: resource-name123
extendedLocation:
name: /subscriptions/F8C729F9-DF9C-4743-848F-96EE433D8E53/resourceGroups/rgiotoperations/providers/Microsoft.ExtendedLocation/customLocations/resource-123
type: CustomLocation
instanceName: resource-name123
properties:
aioMetadata:
aioMaxVersion: 1.4.0
aioMinVersion: 1.2.0
deviceInboundEndpointTypes:
- endpointType: Microsoft.Rest
version: 0.0.1
diagnostics:
logs:
level: info
mqttConnectionConfiguration:
authentication:
method: ServiceAccountToken
serviceAccountTokenSettings:
audience: MQ-SAT
host: aio-broker:18883
keepAliveSeconds: 10
maxInflightMessages: 10
protocol: Mqtt
sessionExpirySeconds: 60
tls:
mode: Enabled
trustedCaCertificateConfigMapRef: azure-iot-operations-aio-ca-trust-bundle
runtimeConfiguration:
helmConfigurationSettings:
releaseName: my-install
repositoryName: my-repo
version: 1.0.0
runtimeConfigurationType: HelmConfiguration
resourceGroupName: rgiotoperations
Create AkriConnectorTemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AkriConnectorTemplate(name: string, args: AkriConnectorTemplateArgs, opts?: CustomResourceOptions);
@overload
def AkriConnectorTemplate(resource_name: str,
args: AkriConnectorTemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AkriConnectorTemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
akri_connector_template_name: Optional[str] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
properties: Optional[AkriConnectorTemplatePropertiesArgs] = None)
func NewAkriConnectorTemplate(ctx *Context, name string, args AkriConnectorTemplateArgs, opts ...ResourceOption) (*AkriConnectorTemplate, error)
public AkriConnectorTemplate(string name, AkriConnectorTemplateArgs args, CustomResourceOptions? opts = null)
public AkriConnectorTemplate(String name, AkriConnectorTemplateArgs args)
public AkriConnectorTemplate(String name, AkriConnectorTemplateArgs args, CustomResourceOptions options)
type: azure-native:iotoperations:AkriConnectorTemplate
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 AkriConnectorTemplateArgs
- 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 AkriConnectorTemplateArgs
- 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 AkriConnectorTemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AkriConnectorTemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AkriConnectorTemplateArgs
- 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 akriConnectorTemplateResource = new AzureNative.IoTOperations.AkriConnectorTemplate("akriConnectorTemplateResource", new()
{
InstanceName = "string",
ResourceGroupName = "string",
AkriConnectorTemplateName = "string",
ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
{
Name = "string",
Type = "string",
},
Properties = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplatePropertiesArgs
{
DeviceInboundEndpointTypes = new[]
{
new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateDeviceInboundEndpointTypeArgs
{
EndpointType = "string",
ConfigurationSchemaRefs = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateDeviceInboundEndpointConfigurationSchemaRefsArgs
{
AdditionalConfigSchemaRef = "string",
DefaultDatasetConfigSchemaRef = "string",
DefaultEventsConfigSchemaRef = "string",
DefaultProcessControlConfigSchemaRef = "string",
DefaultStreamsConfigSchemaRef = "string",
},
Description = "string",
Version = "string",
},
},
RuntimeConfiguration = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmConfigurationArgs
{
HelmConfigurationSettings = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmConfigurationSettingsArgs
{
ReleaseName = "string",
RepositoryName = "string",
Version = "string",
AdvancedConfiguration = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmAdvancedConfigurationArgs
{
Delete = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmDeleteConfigurationArgs
{
Atomic = false,
DisableHooks = false,
Timeout = 0,
Wait = false,
WaitForJobs = false,
},
Install = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmInstallConfigurationArgs
{
Atomic = false,
DisableHooks = false,
Timeout = 0,
Wait = false,
WaitForJobs = false,
},
Upgrade = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmUpgradeConfigurationArgs
{
Atomic = false,
DisableHooks = false,
Timeout = 0,
Wait = false,
WaitForJobs = false,
},
},
RegistrySettings = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmContainerRegistryArgs
{
ContainerRegistrySettings = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmContainerRegistrySettingsArgs
{
Registry = "string",
AuthSecretRef = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateHelmAuthSecretRefArgs
{
PasswordKey = "string",
SecretRef = "string",
UsernameKey = "string",
},
},
RegistrySettingsType = "ContainerRegistry",
},
Values =
{
{ "string", "string" },
},
},
RuntimeConfigurationType = "HelmConfiguration",
},
AioMetadata = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateAioMetadataArgs
{
AioMaxVersion = "string",
AioMinVersion = "string",
},
Diagnostics = new AzureNative.IoTOperations.Inputs.AkriConnectorTemplateDiagnosticsArgs
{
Logs = new AzureNative.IoTOperations.Inputs.AkriConnectorsDiagnosticsLogsArgs
{
Level = "string",
},
},
MqttConnectionConfiguration = new AzureNative.IoTOperations.Inputs.AkriConnectorsMqttConnectionConfigurationArgs
{
Authentication = new AzureNative.IoTOperations.Inputs.AkriConnectorsServiceAccountAuthenticationArgs
{
Method = "ServiceAccountToken",
ServiceAccountTokenSettings = new AzureNative.IoTOperations.Inputs.AkriConnectorsServiceAccountTokenSettingsArgs
{
Audience = "string",
},
},
Host = "string",
KeepAliveSeconds = 0,
MaxInflightMessages = 0,
Protocol = "string",
SessionExpirySeconds = 0,
Tls = new AzureNative.IoTOperations.Inputs.TlsPropertiesArgs
{
Mode = "string",
TrustedCaCertificateConfigMapRef = "string",
},
},
},
});
example, err := iotoperations.NewAkriConnectorTemplate(ctx, "akriConnectorTemplateResource", &iotoperations.AkriConnectorTemplateArgs{
InstanceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
AkriConnectorTemplateName: pulumi.String("string"),
ExtendedLocation: &iotoperations.ExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
Properties: &iotoperations.AkriConnectorTemplatePropertiesArgs{
DeviceInboundEndpointTypes: iotoperations.AkriConnectorTemplateDeviceInboundEndpointTypeArray{
&iotoperations.AkriConnectorTemplateDeviceInboundEndpointTypeArgs{
EndpointType: pulumi.String("string"),
ConfigurationSchemaRefs: &iotoperations.AkriConnectorTemplateDeviceInboundEndpointConfigurationSchemaRefsArgs{
AdditionalConfigSchemaRef: pulumi.String("string"),
DefaultDatasetConfigSchemaRef: pulumi.String("string"),
DefaultEventsConfigSchemaRef: pulumi.String("string"),
DefaultProcessControlConfigSchemaRef: pulumi.String("string"),
DefaultStreamsConfigSchemaRef: pulumi.String("string"),
},
Description: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
RuntimeConfiguration: iotoperations.AkriConnectorTemplateHelmConfiguration{
HelmConfigurationSettings: iotoperations.AkriConnectorTemplateHelmConfigurationSettings{
ReleaseName: "string",
RepositoryName: "string",
Version: "string",
AdvancedConfiguration: iotoperations.AkriConnectorTemplateHelmAdvancedConfiguration{
Delete: iotoperations.AkriConnectorTemplateHelmDeleteConfiguration{
Atomic: false,
DisableHooks: false,
Timeout: 0,
Wait: false,
WaitForJobs: false,
},
Install: iotoperations.AkriConnectorTemplateHelmInstallConfiguration{
Atomic: false,
DisableHooks: false,
Timeout: 0,
Wait: false,
WaitForJobs: false,
},
Upgrade: iotoperations.AkriConnectorTemplateHelmUpgradeConfiguration{
Atomic: false,
DisableHooks: false,
Timeout: 0,
Wait: false,
WaitForJobs: false,
},
},
RegistrySettings: iotoperations.AkriConnectorTemplateHelmContainerRegistry{
ContainerRegistrySettings: iotoperations.AkriConnectorTemplateHelmContainerRegistrySettings{
Registry: "string",
AuthSecretRef: iotoperations.AkriConnectorTemplateHelmAuthSecretRef{
PasswordKey: "string",
SecretRef: "string",
UsernameKey: "string",
},
},
RegistrySettingsType: "ContainerRegistry",
},
Values: map[string]interface{}{
"string": "string",
},
},
RuntimeConfigurationType: "HelmConfiguration",
},
AioMetadata: &iotoperations.AkriConnectorTemplateAioMetadataArgs{
AioMaxVersion: pulumi.String("string"),
AioMinVersion: pulumi.String("string"),
},
Diagnostics: &iotoperations.AkriConnectorTemplateDiagnosticsArgs{
Logs: &iotoperations.AkriConnectorsDiagnosticsLogsArgs{
Level: pulumi.String("string"),
},
},
MqttConnectionConfiguration: &iotoperations.AkriConnectorsMqttConnectionConfigurationArgs{
Authentication: &iotoperations.AkriConnectorsServiceAccountAuthenticationArgs{
Method: pulumi.String("ServiceAccountToken"),
ServiceAccountTokenSettings: &iotoperations.AkriConnectorsServiceAccountTokenSettingsArgs{
Audience: pulumi.String("string"),
},
},
Host: pulumi.String("string"),
KeepAliveSeconds: pulumi.Int(0),
MaxInflightMessages: pulumi.Int(0),
Protocol: pulumi.String("string"),
SessionExpirySeconds: pulumi.Int(0),
Tls: &iotoperations.TlsPropertiesArgs{
Mode: pulumi.String("string"),
TrustedCaCertificateConfigMapRef: pulumi.String("string"),
},
},
},
})
var akriConnectorTemplateResource = new AkriConnectorTemplate("akriConnectorTemplateResource", AkriConnectorTemplateArgs.builder()
.instanceName("string")
.resourceGroupName("string")
.akriConnectorTemplateName("string")
.extendedLocation(ExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.properties(AkriConnectorTemplatePropertiesArgs.builder()
.deviceInboundEndpointTypes(AkriConnectorTemplateDeviceInboundEndpointTypeArgs.builder()
.endpointType("string")
.configurationSchemaRefs(AkriConnectorTemplateDeviceInboundEndpointConfigurationSchemaRefsArgs.builder()
.additionalConfigSchemaRef("string")
.defaultDatasetConfigSchemaRef("string")
.defaultEventsConfigSchemaRef("string")
.defaultProcessControlConfigSchemaRef("string")
.defaultStreamsConfigSchemaRef("string")
.build())
.description("string")
.version("string")
.build())
.runtimeConfiguration(AkriConnectorTemplateHelmConfigurationArgs.builder()
.helmConfigurationSettings(AkriConnectorTemplateHelmConfigurationSettingsArgs.builder()
.releaseName("string")
.repositoryName("string")
.version("string")
.advancedConfiguration(AkriConnectorTemplateHelmAdvancedConfigurationArgs.builder()
.delete(AkriConnectorTemplateHelmDeleteConfigurationArgs.builder()
.atomic(false)
.disableHooks(false)
.timeout(0)
.wait(false)
.waitForJobs(false)
.build())
.install(AkriConnectorTemplateHelmInstallConfigurationArgs.builder()
.atomic(false)
.disableHooks(false)
.timeout(0)
.wait(false)
.waitForJobs(false)
.build())
.upgrade(AkriConnectorTemplateHelmUpgradeConfigurationArgs.builder()
.atomic(false)
.disableHooks(false)
.timeout(0)
.wait(false)
.waitForJobs(false)
.build())
.build())
.registrySettings(AkriConnectorTemplateHelmContainerRegistryArgs.builder()
.containerRegistrySettings(AkriConnectorTemplateHelmContainerRegistrySettingsArgs.builder()
.registry("string")
.authSecretRef(AkriConnectorTemplateHelmAuthSecretRefArgs.builder()
.passwordKey("string")
.secretRef("string")
.usernameKey("string")
.build())
.build())
.registrySettingsType("ContainerRegistry")
.build())
.values(Map.of("string", "string"))
.build())
.runtimeConfigurationType("HelmConfiguration")
.build())
.aioMetadata(AkriConnectorTemplateAioMetadataArgs.builder()
.aioMaxVersion("string")
.aioMinVersion("string")
.build())
.diagnostics(AkriConnectorTemplateDiagnosticsArgs.builder()
.logs(AkriConnectorsDiagnosticsLogsArgs.builder()
.level("string")
.build())
.build())
.mqttConnectionConfiguration(AkriConnectorsMqttConnectionConfigurationArgs.builder()
.authentication(Map.ofEntries(
Map.entry("method", "ServiceAccountToken"),
Map.entry("serviceAccountTokenSettings", AkriConnectorsServiceAccountTokenSettingsArgs.builder()
.audience("string")
.build())
))
.host("string")
.keepAliveSeconds(0)
.maxInflightMessages(0)
.protocol("string")
.sessionExpirySeconds(0)
.tls(TlsPropertiesArgs.builder()
.mode("string")
.trustedCaCertificateConfigMapRef("string")
.build())
.build())
.build())
.build());
akri_connector_template_resource = azure_native.iotoperations.AkriConnectorTemplate("akriConnectorTemplateResource",
instance_name="string",
resource_group_name="string",
akri_connector_template_name="string",
extended_location={
"name": "string",
"type": "string",
},
properties={
"device_inbound_endpoint_types": [{
"endpoint_type": "string",
"configuration_schema_refs": {
"additional_config_schema_ref": "string",
"default_dataset_config_schema_ref": "string",
"default_events_config_schema_ref": "string",
"default_process_control_config_schema_ref": "string",
"default_streams_config_schema_ref": "string",
},
"description": "string",
"version": "string",
}],
"runtime_configuration": {
"helm_configuration_settings": {
"release_name": "string",
"repository_name": "string",
"version": "string",
"advanced_configuration": {
"delete": {
"atomic": False,
"disable_hooks": False,
"timeout": 0,
"wait": False,
"wait_for_jobs": False,
},
"install": {
"atomic": False,
"disable_hooks": False,
"timeout": 0,
"wait": False,
"wait_for_jobs": False,
},
"upgrade": {
"atomic": False,
"disable_hooks": False,
"timeout": 0,
"wait": False,
"wait_for_jobs": False,
},
},
"registry_settings": {
"container_registry_settings": {
"registry": "string",
"auth_secret_ref": {
"password_key": "string",
"secret_ref": "string",
"username_key": "string",
},
},
"registry_settings_type": "ContainerRegistry",
},
"values": {
"string": "string",
},
},
"runtime_configuration_type": "HelmConfiguration",
},
"aio_metadata": {
"aio_max_version": "string",
"aio_min_version": "string",
},
"diagnostics": {
"logs": {
"level": "string",
},
},
"mqtt_connection_configuration": {
"authentication": {
"method": "ServiceAccountToken",
"service_account_token_settings": {
"audience": "string",
},
},
"host": "string",
"keep_alive_seconds": 0,
"max_inflight_messages": 0,
"protocol": "string",
"session_expiry_seconds": 0,
"tls": {
"mode": "string",
"trusted_ca_certificate_config_map_ref": "string",
},
},
})
const akriConnectorTemplateResource = new azure_native.iotoperations.AkriConnectorTemplate("akriConnectorTemplateResource", {
instanceName: "string",
resourceGroupName: "string",
akriConnectorTemplateName: "string",
extendedLocation: {
name: "string",
type: "string",
},
properties: {
deviceInboundEndpointTypes: [{
endpointType: "string",
configurationSchemaRefs: {
additionalConfigSchemaRef: "string",
defaultDatasetConfigSchemaRef: "string",
defaultEventsConfigSchemaRef: "string",
defaultProcessControlConfigSchemaRef: "string",
defaultStreamsConfigSchemaRef: "string",
},
description: "string",
version: "string",
}],
runtimeConfiguration: {
helmConfigurationSettings: {
releaseName: "string",
repositoryName: "string",
version: "string",
advancedConfiguration: {
"delete": {
atomic: false,
disableHooks: false,
timeout: 0,
wait: false,
waitForJobs: false,
},
install: {
atomic: false,
disableHooks: false,
timeout: 0,
wait: false,
waitForJobs: false,
},
upgrade: {
atomic: false,
disableHooks: false,
timeout: 0,
wait: false,
waitForJobs: false,
},
},
registrySettings: {
containerRegistrySettings: {
registry: "string",
authSecretRef: {
passwordKey: "string",
secretRef: "string",
usernameKey: "string",
},
},
registrySettingsType: "ContainerRegistry",
},
values: {
string: "string",
},
},
runtimeConfigurationType: "HelmConfiguration",
},
aioMetadata: {
aioMaxVersion: "string",
aioMinVersion: "string",
},
diagnostics: {
logs: {
level: "string",
},
},
mqttConnectionConfiguration: {
authentication: {
method: "ServiceAccountToken",
serviceAccountTokenSettings: {
audience: "string",
},
},
host: "string",
keepAliveSeconds: 0,
maxInflightMessages: 0,
protocol: "string",
sessionExpirySeconds: 0,
tls: {
mode: "string",
trustedCaCertificateConfigMapRef: "string",
},
},
},
});
type: azure-native:iotoperations:AkriConnectorTemplate
properties:
akriConnectorTemplateName: string
extendedLocation:
name: string
type: string
instanceName: string
properties:
aioMetadata:
aioMaxVersion: string
aioMinVersion: string
deviceInboundEndpointTypes:
- configurationSchemaRefs:
additionalConfigSchemaRef: string
defaultDatasetConfigSchemaRef: string
defaultEventsConfigSchemaRef: string
defaultProcessControlConfigSchemaRef: string
defaultStreamsConfigSchemaRef: string
description: string
endpointType: string
version: string
diagnostics:
logs:
level: string
mqttConnectionConfiguration:
authentication:
method: ServiceAccountToken
serviceAccountTokenSettings:
audience: string
host: string
keepAliveSeconds: 0
maxInflightMessages: 0
protocol: string
sessionExpirySeconds: 0
tls:
mode: string
trustedCaCertificateConfigMapRef: string
runtimeConfiguration:
helmConfigurationSettings:
advancedConfiguration:
delete:
atomic: false
disableHooks: false
timeout: 0
wait: false
waitForJobs: false
install:
atomic: false
disableHooks: false
timeout: 0
wait: false
waitForJobs: false
upgrade:
atomic: false
disableHooks: false
timeout: 0
wait: false
waitForJobs: false
registrySettings:
containerRegistrySettings:
authSecretRef:
passwordKey: string
secretRef: string
usernameKey: string
registry: string
registrySettingsType: ContainerRegistry
releaseName: string
repositoryName: string
values:
string: string
version: string
runtimeConfigurationType: HelmConfiguration
resourceGroupName: string
AkriConnectorTemplate 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 AkriConnectorTemplate 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.
- Akri
Connector stringTemplate Name - Name of AkriConnectorTemplate resource.
- Extended
Location Pulumi.Azure Native. Io TOperations. Inputs. Extended Location - Edge location of the resource.
- Properties
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Properties - The resource-specific properties for this resource.
- Instance
Name string - Name of instance.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Akri
Connector stringTemplate Name - Name of AkriConnectorTemplate resource.
- Extended
Location ExtendedLocation Args - Edge location of the resource.
- Properties
Akri
Connector Template Properties Args - The resource-specific properties for this resource.
- instance
Name String - Name of instance.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- akri
Connector StringTemplate Name - Name of AkriConnectorTemplate resource.
- extended
Location ExtendedLocation - Edge location of the resource.
- properties
Akri
Connector Template Properties - The resource-specific properties for this resource.
- instance
Name string - Name of instance.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- akri
Connector stringTemplate Name - Name of AkriConnectorTemplate resource.
- extended
Location ExtendedLocation - Edge location of the resource.
- properties
Akri
Connector Template Properties - The resource-specific properties for this resource.
- instance_
name str - Name of instance.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- akri_
connector_ strtemplate_ name - Name of AkriConnectorTemplate resource.
- extended_
location ExtendedLocation Args - Edge location of the resource.
- properties
Akri
Connector Template Properties Args - The resource-specific properties for this resource.
- instance
Name String - Name of instance.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- akri
Connector StringTemplate Name - Name of AkriConnectorTemplate resource.
- extended
Location Property Map - Edge location of the resource.
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the AkriConnectorTemplate 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
AkriConnectorTemplateAioMetadata, AkriConnectorTemplateAioMetadataArgs
- Aio
Max stringVersion - The maximum version of AIO required for the connector.
- Aio
Min stringVersion - The minimum version of AIO required for the connector.
- Aio
Max stringVersion - The maximum version of AIO required for the connector.
- Aio
Min stringVersion - The minimum version of AIO required for the connector.
- aio
Max StringVersion - The maximum version of AIO required for the connector.
- aio
Min StringVersion - The minimum version of AIO required for the connector.
- aio
Max stringVersion - The maximum version of AIO required for the connector.
- aio
Min stringVersion - The minimum version of AIO required for the connector.
- aio_
max_ strversion - The maximum version of AIO required for the connector.
- aio_
min_ strversion - The minimum version of AIO required for the connector.
- aio
Max StringVersion - The maximum version of AIO required for the connector.
- aio
Min StringVersion - The minimum version of AIO required for the connector.
AkriConnectorTemplateAioMetadataResponse, AkriConnectorTemplateAioMetadataResponseArgs
- Aio
Max stringVersion - The maximum version of AIO required for the connector.
- Aio
Min stringVersion - The minimum version of AIO required for the connector.
- Aio
Max stringVersion - The maximum version of AIO required for the connector.
- Aio
Min stringVersion - The minimum version of AIO required for the connector.
- aio
Max StringVersion - The maximum version of AIO required for the connector.
- aio
Min StringVersion - The minimum version of AIO required for the connector.
- aio
Max stringVersion - The maximum version of AIO required for the connector.
- aio
Min stringVersion - The minimum version of AIO required for the connector.
- aio_
max_ strversion - The maximum version of AIO required for the connector.
- aio_
min_ strversion - The minimum version of AIO required for the connector.
- aio
Max StringVersion - The maximum version of AIO required for the connector.
- aio
Min StringVersion - The minimum version of AIO required for the connector.
AkriConnectorTemplateBucketizedAllocation, AkriConnectorTemplateBucketizedAllocationArgs
- Bucket
Size int - The bucketized allocation of AEPs for connectors.
- Bucket
Size int - The bucketized allocation of AEPs for connectors.
- bucket
Size Integer - The bucketized allocation of AEPs for connectors.
- bucket
Size number - The bucketized allocation of AEPs for connectors.
- bucket_
size int - The bucketized allocation of AEPs for connectors.
- bucket
Size Number - The bucketized allocation of AEPs for connectors.
AkriConnectorTemplateBucketizedAllocationResponse, AkriConnectorTemplateBucketizedAllocationResponseArgs
- Bucket
Size int - The bucketized allocation of AEPs for connectors.
- Bucket
Size int - The bucketized allocation of AEPs for connectors.
- bucket
Size Integer - The bucketized allocation of AEPs for connectors.
- bucket
Size number - The bucketized allocation of AEPs for connectors.
- bucket_
size int - The bucketized allocation of AEPs for connectors.
- bucket
Size Number - The bucketized allocation of AEPs for connectors.
AkriConnectorTemplateDeviceInboundEndpointConfigurationSchemaRefs, AkriConnectorTemplateDeviceInboundEndpointConfigurationSchemaRefsArgs
- Additional
Config stringSchema Ref - The additional configuration schema reference.
- Default
Dataset stringConfig Schema Ref - The default configuration schema reference for datasets.
- Default
Events stringConfig Schema Ref - The default configuration schema reference for events.
- Default
Process stringControl Config Schema Ref - The default configuration schema reference for process control.
- Default
Streams stringConfig Schema Ref - The default configuration schema reference for streams.
- Additional
Config stringSchema Ref - The additional configuration schema reference.
- Default
Dataset stringConfig Schema Ref - The default configuration schema reference for datasets.
- Default
Events stringConfig Schema Ref - The default configuration schema reference for events.
- Default
Process stringControl Config Schema Ref - The default configuration schema reference for process control.
- Default
Streams stringConfig Schema Ref - The default configuration schema reference for streams.
- additional
Config StringSchema Ref - The additional configuration schema reference.
- default
Dataset StringConfig Schema Ref - The default configuration schema reference for datasets.
- default
Events StringConfig Schema Ref - The default configuration schema reference for events.
- default
Process StringControl Config Schema Ref - The default configuration schema reference for process control.
- default
Streams StringConfig Schema Ref - The default configuration schema reference for streams.
- additional
Config stringSchema Ref - The additional configuration schema reference.
- default
Dataset stringConfig Schema Ref - The default configuration schema reference for datasets.
- default
Events stringConfig Schema Ref - The default configuration schema reference for events.
- default
Process stringControl Config Schema Ref - The default configuration schema reference for process control.
- default
Streams stringConfig Schema Ref - The default configuration schema reference for streams.
- additional_
config_ strschema_ ref - The additional configuration schema reference.
- default_
dataset_ strconfig_ schema_ ref - The default configuration schema reference for datasets.
- default_
events_ strconfig_ schema_ ref - The default configuration schema reference for events.
- default_
process_ strcontrol_ config_ schema_ ref - The default configuration schema reference for process control.
- default_
streams_ strconfig_ schema_ ref - The default configuration schema reference for streams.
- additional
Config StringSchema Ref - The additional configuration schema reference.
- default
Dataset StringConfig Schema Ref - The default configuration schema reference for datasets.
- default
Events StringConfig Schema Ref - The default configuration schema reference for events.
- default
Process StringControl Config Schema Ref - The default configuration schema reference for process control.
- default
Streams StringConfig Schema Ref - The default configuration schema reference for streams.
AkriConnectorTemplateDeviceInboundEndpointConfigurationSchemaRefsResponse, AkriConnectorTemplateDeviceInboundEndpointConfigurationSchemaRefsResponseArgs
- Additional
Config stringSchema Ref - The additional configuration schema reference.
- Default
Dataset stringConfig Schema Ref - The default configuration schema reference for datasets.
- Default
Events stringConfig Schema Ref - The default configuration schema reference for events.
- Default
Process stringControl Config Schema Ref - The default configuration schema reference for process control.
- Default
Streams stringConfig Schema Ref - The default configuration schema reference for streams.
- Additional
Config stringSchema Ref - The additional configuration schema reference.
- Default
Dataset stringConfig Schema Ref - The default configuration schema reference for datasets.
- Default
Events stringConfig Schema Ref - The default configuration schema reference for events.
- Default
Process stringControl Config Schema Ref - The default configuration schema reference for process control.
- Default
Streams stringConfig Schema Ref - The default configuration schema reference for streams.
- additional
Config StringSchema Ref - The additional configuration schema reference.
- default
Dataset StringConfig Schema Ref - The default configuration schema reference for datasets.
- default
Events StringConfig Schema Ref - The default configuration schema reference for events.
- default
Process StringControl Config Schema Ref - The default configuration schema reference for process control.
- default
Streams StringConfig Schema Ref - The default configuration schema reference for streams.
- additional
Config stringSchema Ref - The additional configuration schema reference.
- default
Dataset stringConfig Schema Ref - The default configuration schema reference for datasets.
- default
Events stringConfig Schema Ref - The default configuration schema reference for events.
- default
Process stringControl Config Schema Ref - The default configuration schema reference for process control.
- default
Streams stringConfig Schema Ref - The default configuration schema reference for streams.
- additional_
config_ strschema_ ref - The additional configuration schema reference.
- default_
dataset_ strconfig_ schema_ ref - The default configuration schema reference for datasets.
- default_
events_ strconfig_ schema_ ref - The default configuration schema reference for events.
- default_
process_ strcontrol_ config_ schema_ ref - The default configuration schema reference for process control.
- default_
streams_ strconfig_ schema_ ref - The default configuration schema reference for streams.
- additional
Config StringSchema Ref - The additional configuration schema reference.
- default
Dataset StringConfig Schema Ref - The default configuration schema reference for datasets.
- default
Events StringConfig Schema Ref - The default configuration schema reference for events.
- default
Process StringControl Config Schema Ref - The default configuration schema reference for process control.
- default
Streams StringConfig Schema Ref - The default configuration schema reference for streams.
AkriConnectorTemplateDeviceInboundEndpointType, AkriConnectorTemplateDeviceInboundEndpointTypeArgs
- Endpoint
Type string - The type of the device inbound endpoint.
- Configuration
Schema Pulumi.Refs Azure Native. Io TOperations. Inputs. Akri Connector Template Device Inbound Endpoint Configuration Schema Refs - The configuration schema references for the device inbound endpoint.
- Description string
- A description of the device inbound endpoint.
- Version string
- The version of the device inbound endpoint.
- Endpoint
Type string - The type of the device inbound endpoint.
- Configuration
Schema AkriRefs Connector Template Device Inbound Endpoint Configuration Schema Refs - The configuration schema references for the device inbound endpoint.
- Description string
- A description of the device inbound endpoint.
- Version string
- The version of the device inbound endpoint.
- endpoint
Type String - The type of the device inbound endpoint.
- configuration
Schema AkriRefs Connector Template Device Inbound Endpoint Configuration Schema Refs - The configuration schema references for the device inbound endpoint.
- description String
- A description of the device inbound endpoint.
- version String
- The version of the device inbound endpoint.
- endpoint
Type string - The type of the device inbound endpoint.
- configuration
Schema AkriRefs Connector Template Device Inbound Endpoint Configuration Schema Refs - The configuration schema references for the device inbound endpoint.
- description string
- A description of the device inbound endpoint.
- version string
- The version of the device inbound endpoint.
- endpoint_
type str - The type of the device inbound endpoint.
- configuration_
schema_ Akrirefs Connector Template Device Inbound Endpoint Configuration Schema Refs - The configuration schema references for the device inbound endpoint.
- description str
- A description of the device inbound endpoint.
- version str
- The version of the device inbound endpoint.
- endpoint
Type String - The type of the device inbound endpoint.
- configuration
Schema Property MapRefs - The configuration schema references for the device inbound endpoint.
- description String
- A description of the device inbound endpoint.
- version String
- The version of the device inbound endpoint.
AkriConnectorTemplateDeviceInboundEndpointTypeResponse, AkriConnectorTemplateDeviceInboundEndpointTypeResponseArgs
- Endpoint
Type string - The type of the device inbound endpoint.
- Configuration
Schema Pulumi.Refs Azure Native. Io TOperations. Inputs. Akri Connector Template Device Inbound Endpoint Configuration Schema Refs Response - The configuration schema references for the device inbound endpoint.
- Description string
- A description of the device inbound endpoint.
- Version string
- The version of the device inbound endpoint.
- Endpoint
Type string - The type of the device inbound endpoint.
- Configuration
Schema AkriRefs Connector Template Device Inbound Endpoint Configuration Schema Refs Response - The configuration schema references for the device inbound endpoint.
- Description string
- A description of the device inbound endpoint.
- Version string
- The version of the device inbound endpoint.
- endpoint
Type String - The type of the device inbound endpoint.
- configuration
Schema AkriRefs Connector Template Device Inbound Endpoint Configuration Schema Refs Response - The configuration schema references for the device inbound endpoint.
- description String
- A description of the device inbound endpoint.
- version String
- The version of the device inbound endpoint.
- endpoint
Type string - The type of the device inbound endpoint.
- configuration
Schema AkriRefs Connector Template Device Inbound Endpoint Configuration Schema Refs Response - The configuration schema references for the device inbound endpoint.
- description string
- A description of the device inbound endpoint.
- version string
- The version of the device inbound endpoint.
- endpoint_
type str - The type of the device inbound endpoint.
- configuration_
schema_ Akrirefs Connector Template Device Inbound Endpoint Configuration Schema Refs Response - The configuration schema references for the device inbound endpoint.
- description str
- A description of the device inbound endpoint.
- version str
- The version of the device inbound endpoint.
- endpoint
Type String - The type of the device inbound endpoint.
- configuration
Schema Property MapRefs - The configuration schema references for the device inbound endpoint.
- description String
- A description of the device inbound endpoint.
- version String
- The version of the device inbound endpoint.
AkriConnectorTemplateDiagnostics, AkriConnectorTemplateDiagnosticsArgs
- Logs
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connectors Diagnostics Logs - The log settings for the Connector template.
- Logs
Akri
Connectors Diagnostics Logs - The log settings for the Connector template.
- logs
Akri
Connectors Diagnostics Logs - The log settings for the Connector template.
- logs
Akri
Connectors Diagnostics Logs - The log settings for the Connector template.
- logs
Akri
Connectors Diagnostics Logs - The log settings for the Connector template.
- logs Property Map
- The log settings for the Connector template.
AkriConnectorTemplateDiagnosticsResponse, AkriConnectorTemplateDiagnosticsResponseArgs
- Logs
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connectors Diagnostics Logs Response - The log settings for the Connector template.
- Logs
Akri
Connectors Diagnostics Logs Response - The log settings for the Connector template.
- logs
Akri
Connectors Diagnostics Logs Response - The log settings for the Connector template.
- logs
Akri
Connectors Diagnostics Logs Response - The log settings for the Connector template.
- logs
Akri
Connectors Diagnostics Logs Response - The log settings for the Connector template.
- logs Property Map
- The log settings for the Connector template.
AkriConnectorTemplateHelmAdvancedConfiguration, AkriConnectorTemplateHelmAdvancedConfigurationArgs
- Delete
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Delete Configuration - Delete operation configuration for the Helm chart.
- Install
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Install Configuration - Install operation configuration for the Helm chart.
- Upgrade
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Upgrade Configuration - Upgrade operation configuration for the Helm chart.
- Delete
Akri
Connector Template Helm Delete Configuration - Delete operation configuration for the Helm chart.
- Install
Akri
Connector Template Helm Install Configuration - Install operation configuration for the Helm chart.
- Upgrade
Akri
Connector Template Helm Upgrade Configuration - Upgrade operation configuration for the Helm chart.
- delete
Akri
Connector Template Helm Delete Configuration - Delete operation configuration for the Helm chart.
- install
Akri
Connector Template Helm Install Configuration - Install operation configuration for the Helm chart.
- upgrade
Akri
Connector Template Helm Upgrade Configuration - Upgrade operation configuration for the Helm chart.
- delete
Akri
Connector Template Helm Delete Configuration - Delete operation configuration for the Helm chart.
- install
Akri
Connector Template Helm Install Configuration - Install operation configuration for the Helm chart.
- upgrade
Akri
Connector Template Helm Upgrade Configuration - Upgrade operation configuration for the Helm chart.
- delete
Akri
Connector Template Helm Delete Configuration - Delete operation configuration for the Helm chart.
- install
Akri
Connector Template Helm Install Configuration - Install operation configuration for the Helm chart.
- upgrade
Akri
Connector Template Helm Upgrade Configuration - Upgrade operation configuration for the Helm chart.
- delete Property Map
- Delete operation configuration for the Helm chart.
- install Property Map
- Install operation configuration for the Helm chart.
- upgrade Property Map
- Upgrade operation configuration for the Helm chart.
AkriConnectorTemplateHelmAdvancedConfigurationResponse, AkriConnectorTemplateHelmAdvancedConfigurationResponseArgs
- Delete
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Delete Configuration Response - Delete operation configuration for the Helm chart.
- Install
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Install Configuration Response - Install operation configuration for the Helm chart.
- Upgrade
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Upgrade Configuration Response - Upgrade operation configuration for the Helm chart.
- Delete
Akri
Connector Template Helm Delete Configuration Response - Delete operation configuration for the Helm chart.
- Install
Akri
Connector Template Helm Install Configuration Response - Install operation configuration for the Helm chart.
- Upgrade
Akri
Connector Template Helm Upgrade Configuration Response - Upgrade operation configuration for the Helm chart.
- delete
Akri
Connector Template Helm Delete Configuration Response - Delete operation configuration for the Helm chart.
- install
Akri
Connector Template Helm Install Configuration Response - Install operation configuration for the Helm chart.
- upgrade
Akri
Connector Template Helm Upgrade Configuration Response - Upgrade operation configuration for the Helm chart.
- delete
Akri
Connector Template Helm Delete Configuration Response - Delete operation configuration for the Helm chart.
- install
Akri
Connector Template Helm Install Configuration Response - Install operation configuration for the Helm chart.
- upgrade
Akri
Connector Template Helm Upgrade Configuration Response - Upgrade operation configuration for the Helm chart.
- delete
Akri
Connector Template Helm Delete Configuration Response - Delete operation configuration for the Helm chart.
- install
Akri
Connector Template Helm Install Configuration Response - Install operation configuration for the Helm chart.
- upgrade
Akri
Connector Template Helm Upgrade Configuration Response - Upgrade operation configuration for the Helm chart.
- delete Property Map
- Delete operation configuration for the Helm chart.
- install Property Map
- Install operation configuration for the Helm chart.
- upgrade Property Map
- Upgrade operation configuration for the Helm chart.
AkriConnectorTemplateHelmAuthSecretRef, AkriConnectorTemplateHelmAuthSecretRefArgs
- Password
Key string - The key of the password in the secret.
- Secret
Ref string - The name of the secret.
- Username
Key string - The key of the username in the secret.
- Password
Key string - The key of the password in the secret.
- Secret
Ref string - The name of the secret.
- Username
Key string - The key of the username in the secret.
- password
Key String - The key of the password in the secret.
- secret
Ref String - The name of the secret.
- username
Key String - The key of the username in the secret.
- password
Key string - The key of the password in the secret.
- secret
Ref string - The name of the secret.
- username
Key string - The key of the username in the secret.
- password_
key str - The key of the password in the secret.
- secret_
ref str - The name of the secret.
- username_
key str - The key of the username in the secret.
- password
Key String - The key of the password in the secret.
- secret
Ref String - The name of the secret.
- username
Key String - The key of the username in the secret.
AkriConnectorTemplateHelmAuthSecretRefResponse, AkriConnectorTemplateHelmAuthSecretRefResponseArgs
- Password
Key string - The key of the password in the secret.
- Secret
Ref string - The name of the secret.
- Username
Key string - The key of the username in the secret.
- Password
Key string - The key of the password in the secret.
- Secret
Ref string - The name of the secret.
- Username
Key string - The key of the username in the secret.
- password
Key String - The key of the password in the secret.
- secret
Ref String - The name of the secret.
- username
Key String - The key of the username in the secret.
- password
Key string - The key of the password in the secret.
- secret
Ref string - The name of the secret.
- username
Key string - The key of the username in the secret.
- password_
key str - The key of the password in the secret.
- secret_
ref str - The name of the secret.
- username_
key str - The key of the username in the secret.
- password
Key String - The key of the password in the secret.
- secret
Ref String - The name of the secret.
- username
Key String - The key of the username in the secret.
AkriConnectorTemplateHelmConfiguration, AkriConnectorTemplateHelmConfigurationArgs
- Helm
Configuration Pulumi.Settings Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Configuration Settings - The Helm configuration settings.
- Helm
Configuration AkriSettings Connector Template Helm Configuration Settings - The Helm configuration settings.
- helm
Configuration AkriSettings Connector Template Helm Configuration Settings - The Helm configuration settings.
- helm
Configuration AkriSettings Connector Template Helm Configuration Settings - The Helm configuration settings.
- helm_
configuration_ Akrisettings Connector Template Helm Configuration Settings - The Helm configuration settings.
- helm
Configuration Property MapSettings - The Helm configuration settings.
AkriConnectorTemplateHelmConfigurationResponse, AkriConnectorTemplateHelmConfigurationResponseArgs
- Helm
Configuration Pulumi.Settings Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Configuration Settings Response - The Helm configuration settings.
- Helm
Configuration AkriSettings Connector Template Helm Configuration Settings Response - The Helm configuration settings.
- helm
Configuration AkriSettings Connector Template Helm Configuration Settings Response - The Helm configuration settings.
- helm
Configuration AkriSettings Connector Template Helm Configuration Settings Response - The Helm configuration settings.
- helm_
configuration_ Akrisettings Connector Template Helm Configuration Settings Response - The Helm configuration settings.
- helm
Configuration Property MapSettings - The Helm configuration settings.
AkriConnectorTemplateHelmConfigurationSettings, AkriConnectorTemplateHelmConfigurationSettingsArgs
- Release
Name string - The release name of the Helm chart.
- Repository
Name string - The name of the repository
- Version string
- The version of the Helm chart.
- Advanced
Configuration Pulumi.Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Advanced Configuration - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - Registry
Settings Pulumi.Azure | Pulumi.Native. Io TOperations. Inputs. Akri Connector Template Helm Container Registry Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Registry Endpoint Ref - The registry settings for the helm chart to be used.
- Values Dictionary<string, string>
- A map of values to pass to the helm chart.
- Release
Name string - The release name of the Helm chart.
- Repository
Name string - The name of the repository
- Version string
- The version of the Helm chart.
- Advanced
Configuration AkriConnector Template Helm Advanced Configuration - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - Registry
Settings AkriConnector | AkriTemplate Helm Container Registry Connector Template Helm Registry Endpoint Ref - The registry settings for the helm chart to be used.
- Values map[string]string
- A map of values to pass to the helm chart.
- release
Name String - The release name of the Helm chart.
- repository
Name String - The name of the repository
- version String
- The version of the Helm chart.
- advanced
Configuration AkriConnector Template Helm Advanced Configuration - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - registry
Settings AkriConnector | AkriTemplate Helm Container Registry Connector Template Helm Registry Endpoint Ref - The registry settings for the helm chart to be used.
- values Map<String,String>
- A map of values to pass to the helm chart.
- release
Name string - The release name of the Helm chart.
- repository
Name string - The name of the repository
- version string
- The version of the Helm chart.
- advanced
Configuration AkriConnector Template Helm Advanced Configuration - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - registry
Settings AkriConnector | AkriTemplate Helm Container Registry Connector Template Helm Registry Endpoint Ref - The registry settings for the helm chart to be used.
- values {[key: string]: string}
- A map of values to pass to the helm chart.
- release_
name str - The release name of the Helm chart.
- repository_
name str - The name of the repository
- version str
- The version of the Helm chart.
- advanced_
configuration AkriConnector Template Helm Advanced Configuration - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - registry_
settings AkriConnector | AkriTemplate Helm Container Registry Connector Template Helm Registry Endpoint Ref - The registry settings for the helm chart to be used.
- values Mapping[str, str]
- A map of values to pass to the helm chart.
- release
Name String - The release name of the Helm chart.
- repository
Name String - The name of the repository
- version String
- The version of the Helm chart.
- advanced
Configuration Property Map - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - registry
Settings Property Map | Property Map - The registry settings for the helm chart to be used.
- values Map<String>
- A map of values to pass to the helm chart.
AkriConnectorTemplateHelmConfigurationSettingsResponse, AkriConnectorTemplateHelmConfigurationSettingsResponseArgs
- Release
Name string - The release name of the Helm chart.
- Repository
Name string - The name of the repository
- Version string
- The version of the Helm chart.
- Advanced
Configuration Pulumi.Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Advanced Configuration Response - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - Registry
Settings Pulumi.Azure | Pulumi.Native. Io TOperations. Inputs. Akri Connector Template Helm Container Registry Response Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Registry Endpoint Ref Response - The registry settings for the helm chart to be used.
- Values Dictionary<string, string>
- A map of values to pass to the helm chart.
- Release
Name string - The release name of the Helm chart.
- Repository
Name string - The name of the repository
- Version string
- The version of the Helm chart.
- Advanced
Configuration AkriConnector Template Helm Advanced Configuration Response - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - Registry
Settings AkriConnector | AkriTemplate Helm Container Registry Response Connector Template Helm Registry Endpoint Ref Response - The registry settings for the helm chart to be used.
- Values map[string]string
- A map of values to pass to the helm chart.
- release
Name String - The release name of the Helm chart.
- repository
Name String - The name of the repository
- version String
- The version of the Helm chart.
- advanced
Configuration AkriConnector Template Helm Advanced Configuration Response - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - registry
Settings AkriConnector | AkriTemplate Helm Container Registry Response Connector Template Helm Registry Endpoint Ref Response - The registry settings for the helm chart to be used.
- values Map<String,String>
- A map of values to pass to the helm chart.
- release
Name string - The release name of the Helm chart.
- repository
Name string - The name of the repository
- version string
- The version of the Helm chart.
- advanced
Configuration AkriConnector Template Helm Advanced Configuration Response - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - registry
Settings AkriConnector | AkriTemplate Helm Container Registry Response Connector Template Helm Registry Endpoint Ref Response - The registry settings for the helm chart to be used.
- values {[key: string]: string}
- A map of values to pass to the helm chart.
- release_
name str - The release name of the Helm chart.
- repository_
name str - The name of the repository
- version str
- The version of the Helm chart.
- advanced_
configuration AkriConnector Template Helm Advanced Configuration Response - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - registry_
settings AkriConnector | AkriTemplate Helm Container Registry Response Connector Template Helm Registry Endpoint Ref Response - The registry settings for the helm chart to be used.
- values Mapping[str, str]
- A map of values to pass to the helm chart.
- release
Name String - The release name of the Helm chart.
- repository
Name String - The name of the repository
- version String
- The version of the Helm chart.
- advanced
Configuration Property Map - Advanced configuration for the Helm chart.
Install, upgrade, and uninstall options for the helm chart such as atomic, wait, timeout,
wait_for_jobs
, anddisable_hooks
. - registry
Settings Property Map | Property Map - The registry settings for the helm chart to be used.
- values Map<String>
- A map of values to pass to the helm chart.
AkriConnectorTemplateHelmContainerRegistry, AkriConnectorTemplateHelmContainerRegistryArgs
- Container
Registry Pulumi.Settings Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Container Registry Settings - The registry settings for the container registry.
- Container
Registry AkriSettings Connector Template Helm Container Registry Settings - The registry settings for the container registry.
- container
Registry AkriSettings Connector Template Helm Container Registry Settings - The registry settings for the container registry.
- container
Registry AkriSettings Connector Template Helm Container Registry Settings - The registry settings for the container registry.
- container_
registry_ Akrisettings Connector Template Helm Container Registry Settings - The registry settings for the container registry.
- container
Registry Property MapSettings - The registry settings for the container registry.
AkriConnectorTemplateHelmContainerRegistryResponse, AkriConnectorTemplateHelmContainerRegistryResponseArgs
- Container
Registry Pulumi.Settings Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Container Registry Settings Response - The registry settings for the container registry.
- Container
Registry AkriSettings Connector Template Helm Container Registry Settings Response - The registry settings for the container registry.
- container
Registry AkriSettings Connector Template Helm Container Registry Settings Response - The registry settings for the container registry.
- container
Registry AkriSettings Connector Template Helm Container Registry Settings Response - The registry settings for the container registry.
- container_
registry_ Akrisettings Connector Template Helm Container Registry Settings Response - The registry settings for the container registry.
- container
Registry Property MapSettings - The registry settings for the container registry.
AkriConnectorTemplateHelmContainerRegistrySettings, AkriConnectorTemplateHelmContainerRegistrySettingsArgs
- Registry string
- The registry to use for the Helm chart.
- Auth
Secret Pulumi.Ref Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Auth Secret Ref - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- Registry string
- The registry to use for the Helm chart.
- Auth
Secret AkriRef Connector Template Helm Auth Secret Ref - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- registry String
- The registry to use for the Helm chart.
- auth
Secret AkriRef Connector Template Helm Auth Secret Ref - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- registry string
- The registry to use for the Helm chart.
- auth
Secret AkriRef Connector Template Helm Auth Secret Ref - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- registry str
- The registry to use for the Helm chart.
- auth_
secret_ Akriref Connector Template Helm Auth Secret Ref - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- registry String
- The registry to use for the Helm chart.
- auth
Secret Property MapRef - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
AkriConnectorTemplateHelmContainerRegistrySettingsResponse, AkriConnectorTemplateHelmContainerRegistrySettingsResponseArgs
- Registry string
- The registry to use for the Helm chart.
- Auth
Secret Pulumi.Ref Azure Native. Io TOperations. Inputs. Akri Connector Template Helm Auth Secret Ref Response - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- Registry string
- The registry to use for the Helm chart.
- Auth
Secret AkriRef Connector Template Helm Auth Secret Ref Response - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- registry String
- The registry to use for the Helm chart.
- auth
Secret AkriRef Connector Template Helm Auth Secret Ref Response - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- registry string
- The registry to use for the Helm chart.
- auth
Secret AkriRef Connector Template Helm Auth Secret Ref Response - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- registry str
- The registry to use for the Helm chart.
- auth_
secret_ Akriref Connector Template Helm Auth Secret Ref Response - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
- registry String
- The registry to use for the Helm chart.
- auth
Secret Property MapRef - Optional reference to a secret in the same namespace to use for pulling the Helm chart.
AkriConnectorTemplateHelmDeleteConfiguration, AkriConnectorTemplateHelmDeleteConfigurationArgs
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Integer
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- wait_ Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful.
- atomic boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks boolean - Disable pre/post upgrade hooks for the operation.
- timeout number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For booleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable_
hooks bool - Disable pre/post upgrade hooks for the operation.
- timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait_
for_ booljobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
AkriConnectorTemplateHelmDeleteConfigurationResponse, AkriConnectorTemplateHelmDeleteConfigurationResponseArgs
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Integer
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- wait_ Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful.
- atomic boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks boolean - Disable pre/post upgrade hooks for the operation.
- timeout number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For booleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable_
hooks bool - Disable pre/post upgrade hooks for the operation.
- timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait_
for_ booljobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
AkriConnectorTemplateHelmInstallConfiguration, AkriConnectorTemplateHelmInstallConfigurationArgs
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Integer
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- wait_ Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful.
- atomic boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks boolean - Disable pre/post upgrade hooks for the operation.
- timeout number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For booleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable_
hooks bool - Disable pre/post upgrade hooks for the operation.
- timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait_
for_ booljobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
AkriConnectorTemplateHelmInstallConfigurationResponse, AkriConnectorTemplateHelmInstallConfigurationResponseArgs
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Integer
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- wait_ Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful.
- atomic boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks boolean - Disable pre/post upgrade hooks for the operation.
- timeout number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For booleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable_
hooks bool - Disable pre/post upgrade hooks for the operation.
- timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait_
for_ booljobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
AkriConnectorTemplateHelmRegistryEndpointRef, AkriConnectorTemplateHelmRegistryEndpointRefArgs
- Registry
Endpoint stringRef - The name of the registry endpoint.
- Registry
Endpoint stringRef - The name of the registry endpoint.
- registry
Endpoint StringRef - The name of the registry endpoint.
- registry
Endpoint stringRef - The name of the registry endpoint.
- registry_
endpoint_ strref - The name of the registry endpoint.
- registry
Endpoint StringRef - The name of the registry endpoint.
AkriConnectorTemplateHelmRegistryEndpointRefResponse, AkriConnectorTemplateHelmRegistryEndpointRefResponseArgs
- Registry
Endpoint stringRef - The name of the registry endpoint.
- Registry
Endpoint stringRef - The name of the registry endpoint.
- registry
Endpoint StringRef - The name of the registry endpoint.
- registry
Endpoint stringRef - The name of the registry endpoint.
- registry_
endpoint_ strref - The name of the registry endpoint.
- registry
Endpoint StringRef - The name of the registry endpoint.
AkriConnectorTemplateHelmUpgradeConfiguration, AkriConnectorTemplateHelmUpgradeConfigurationArgs
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Integer
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- wait_ Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful.
- atomic boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks boolean - Disable pre/post upgrade hooks for the operation.
- timeout number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For booleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable_
hooks bool - Disable pre/post upgrade hooks for the operation.
- timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait_
for_ booljobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
AkriConnectorTemplateHelmUpgradeConfigurationResponse, AkriConnectorTemplateHelmUpgradeConfigurationResponseArgs
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- Atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- Disable
Hooks bool - Disable pre/post upgrade hooks for the operation.
- Timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - Wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - Wait
For boolJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Integer
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- wait_ Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful.
- atomic boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks boolean - Disable pre/post upgrade hooks for the operation.
- timeout number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For booleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic bool
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable_
hooks bool - Disable pre/post upgrade hooks for the operation.
- timeout int
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait bool
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait_
for_ booljobs - If set, the operation will wait for jobs to complete before marking the release as successful.
- atomic Boolean
- If set, the operation will be atomic. If the operation fails, all changes will be rolled back.
- disable
Hooks Boolean - Disable pre/post upgrade hooks for the operation.
- timeout Number
- Time to wait for any individual Kubernetes operation (like
Jobs
for hooks). - wait Boolean
- If set, the operation will wait until all Pods, PVCs, Services, and minimum number of Pods of a
Deployment
,StatefulSet
, orReplicaSet
are in a ready state before marking the release as successful. - wait
For BooleanJobs - If set, the operation will wait for jobs to complete before marking the release as successful.
AkriConnectorTemplateManagedConfiguration, AkriConnectorTemplateManagedConfigurationArgs
- Managed
Configuration AkriSettings Connector | AkriTemplate Runtime Image Configuration Connector Template Runtime Stateful Set Configuration - The managed configuration settings.
- managed
Configuration AkriSettings Connector | AkriTemplate Runtime Image Configuration Connector Template Runtime Stateful Set Configuration - The managed configuration settings.
- managed
Configuration AkriSettings Connector | AkriTemplate Runtime Image Configuration Connector Template Runtime Stateful Set Configuration - The managed configuration settings.
- managed_
configuration_ Akrisettings Connector | AkriTemplate Runtime Image Configuration Connector Template Runtime Stateful Set Configuration - The managed configuration settings.
- managed
Configuration Property Map | Property MapSettings - The managed configuration settings.
AkriConnectorTemplateManagedConfigurationResponse, AkriConnectorTemplateManagedConfigurationResponseArgs
- Managed
Configuration AkriSettings Connector | AkriTemplate Runtime Image Configuration Response Connector Template Runtime Stateful Set Configuration Response - The managed configuration settings.
- managed
Configuration AkriSettings Connector | AkriTemplate Runtime Image Configuration Response Connector Template Runtime Stateful Set Configuration Response - The managed configuration settings.
- managed
Configuration AkriSettings Connector | AkriTemplate Runtime Image Configuration Response Connector Template Runtime Stateful Set Configuration Response - The managed configuration settings.
- managed_
configuration_ Akrisettings Connector | AkriTemplate Runtime Image Configuration Response Connector Template Runtime Stateful Set Configuration Response - The managed configuration settings.
- managed
Configuration Property Map | Property MapSettings - The managed configuration settings.
AkriConnectorTemplatePersistentVolumeClaim, AkriConnectorTemplatePersistentVolumeClaimArgs
- claim_
name str - The name of the persistent volume claim.
- mount_
path str - The mount path for the persistent volume claim.
AkriConnectorTemplatePersistentVolumeClaimResponse, AkriConnectorTemplatePersistentVolumeClaimResponseArgs
- claim_
name str - The name of the persistent volume claim.
- mount_
path str - The mount path for the persistent volume claim.
AkriConnectorTemplateProperties, AkriConnectorTemplatePropertiesArgs
- Device
Inbound List<Pulumi.Endpoint Types Azure Native. Io TOperations. Inputs. Akri Connector Template Device Inbound Endpoint Type> - Device inbound endpoint types.
- Runtime
Configuration Pulumi.Azure | Pulumi.Native. Io TOperations. Inputs. Akri Connector Template Helm Configuration Azure Native. Io TOperations. Inputs. Akri Connector Template Managed Configuration - The runtime configuration for the Connector template.
- Aio
Metadata Pulumi.Azure Native. Io TOperations. Inputs. Akri Connector Template Aio Metadata - Metadata about AIO.
- Diagnostics
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Diagnostics - Diagnostics settings for the Connector template.
- Mqtt
Connection Pulumi.Configuration Azure Native. Io TOperations. Inputs. Akri Connectors Mqtt Connection Configuration - Mqtt connection configuration settings.
- Device
Inbound []AkriEndpoint Types Connector Template Device Inbound Endpoint Type - Device inbound endpoint types.
- Runtime
Configuration AkriConnector | AkriTemplate Helm Configuration Connector Template Managed Configuration - The runtime configuration for the Connector template.
- Aio
Metadata AkriConnector Template Aio Metadata - Metadata about AIO.
- Diagnostics
Akri
Connector Template Diagnostics - Diagnostics settings for the Connector template.
- Mqtt
Connection AkriConfiguration Connectors Mqtt Connection Configuration - Mqtt connection configuration settings.
- device
Inbound List<AkriEndpoint Types Connector Template Device Inbound Endpoint Type> - Device inbound endpoint types.
- runtime
Configuration AkriConnector | AkriTemplate Helm Configuration Connector Template Managed Configuration - The runtime configuration for the Connector template.
- aio
Metadata AkriConnector Template Aio Metadata - Metadata about AIO.
- diagnostics
Akri
Connector Template Diagnostics - Diagnostics settings for the Connector template.
- mqtt
Connection AkriConfiguration Connectors Mqtt Connection Configuration - Mqtt connection configuration settings.
- device
Inbound AkriEndpoint Types Connector Template Device Inbound Endpoint Type[] - Device inbound endpoint types.
- runtime
Configuration AkriConnector | AkriTemplate Helm Configuration Connector Template Managed Configuration - The runtime configuration for the Connector template.
- aio
Metadata AkriConnector Template Aio Metadata - Metadata about AIO.
- diagnostics
Akri
Connector Template Diagnostics - Diagnostics settings for the Connector template.
- mqtt
Connection AkriConfiguration Connectors Mqtt Connection Configuration - Mqtt connection configuration settings.
- device_
inbound_ Sequence[Akriendpoint_ types Connector Template Device Inbound Endpoint Type] - Device inbound endpoint types.
- runtime_
configuration AkriConnector | AkriTemplate Helm Configuration Connector Template Managed Configuration - The runtime configuration for the Connector template.
- aio_
metadata AkriConnector Template Aio Metadata - Metadata about AIO.
- diagnostics
Akri
Connector Template Diagnostics - Diagnostics settings for the Connector template.
- mqtt_
connection_ Akriconfiguration Connectors Mqtt Connection Configuration - Mqtt connection configuration settings.
- device
Inbound List<Property Map>Endpoint Types - Device inbound endpoint types.
- runtime
Configuration Property Map | Property Map - The runtime configuration for the Connector template.
- aio
Metadata Property Map - Metadata about AIO.
- diagnostics Property Map
- Diagnostics settings for the Connector template.
- mqtt
Connection Property MapConfiguration - Mqtt connection configuration settings.
AkriConnectorTemplatePropertiesResponse, AkriConnectorTemplatePropertiesResponseArgs
- Device
Inbound List<Pulumi.Endpoint Types Azure Native. Io TOperations. Inputs. Akri Connector Template Device Inbound Endpoint Type Response> - Device inbound endpoint types.
- Provisioning
State string - The status of the last operation.
- Runtime
Configuration Pulumi.Azure | Pulumi.Native. Io TOperations. Inputs. Akri Connector Template Helm Configuration Response Azure Native. Io TOperations. Inputs. Akri Connector Template Managed Configuration Response - The runtime configuration for the Connector template.
- Aio
Metadata Pulumi.Azure Native. Io TOperations. Inputs. Akri Connector Template Aio Metadata Response - Metadata about AIO.
- Diagnostics
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Diagnostics Response - Diagnostics settings for the Connector template.
- Mqtt
Connection Pulumi.Configuration Azure Native. Io TOperations. Inputs. Akri Connectors Mqtt Connection Configuration Response - Mqtt connection configuration settings.
- Device
Inbound []AkriEndpoint Types Connector Template Device Inbound Endpoint Type Response - Device inbound endpoint types.
- Provisioning
State string - The status of the last operation.
- Runtime
Configuration AkriConnector | AkriTemplate Helm Configuration Response Connector Template Managed Configuration Response - The runtime configuration for the Connector template.
- Aio
Metadata AkriConnector Template Aio Metadata Response - Metadata about AIO.
- Diagnostics
Akri
Connector Template Diagnostics Response - Diagnostics settings for the Connector template.
- Mqtt
Connection AkriConfiguration Connectors Mqtt Connection Configuration Response - Mqtt connection configuration settings.
- device
Inbound List<AkriEndpoint Types Connector Template Device Inbound Endpoint Type Response> - Device inbound endpoint types.
- provisioning
State String - The status of the last operation.
- runtime
Configuration AkriConnector | AkriTemplate Helm Configuration Response Connector Template Managed Configuration Response - The runtime configuration for the Connector template.
- aio
Metadata AkriConnector Template Aio Metadata Response - Metadata about AIO.
- diagnostics
Akri
Connector Template Diagnostics Response - Diagnostics settings for the Connector template.
- mqtt
Connection AkriConfiguration Connectors Mqtt Connection Configuration Response - Mqtt connection configuration settings.
- device
Inbound AkriEndpoint Types Connector Template Device Inbound Endpoint Type Response[] - Device inbound endpoint types.
- provisioning
State string - The status of the last operation.
- runtime
Configuration AkriConnector | AkriTemplate Helm Configuration Response Connector Template Managed Configuration Response - The runtime configuration for the Connector template.
- aio
Metadata AkriConnector Template Aio Metadata Response - Metadata about AIO.
- diagnostics
Akri
Connector Template Diagnostics Response - Diagnostics settings for the Connector template.
- mqtt
Connection AkriConfiguration Connectors Mqtt Connection Configuration Response - Mqtt connection configuration settings.
- device_
inbound_ Sequence[Akriendpoint_ types Connector Template Device Inbound Endpoint Type Response] - Device inbound endpoint types.
- provisioning_
state str - The status of the last operation.
- runtime_
configuration AkriConnector | AkriTemplate Helm Configuration Response Connector Template Managed Configuration Response - The runtime configuration for the Connector template.
- aio_
metadata AkriConnector Template Aio Metadata Response - Metadata about AIO.
- diagnostics
Akri
Connector Template Diagnostics Response - Diagnostics settings for the Connector template.
- mqtt_
connection_ Akriconfiguration Connectors Mqtt Connection Configuration Response - Mqtt connection configuration settings.
- device
Inbound List<Property Map>Endpoint Types - Device inbound endpoint types.
- provisioning
State String - The status of the last operation.
- runtime
Configuration Property Map | Property Map - The runtime configuration for the Connector template.
- aio
Metadata Property Map - Metadata about AIO.
- diagnostics Property Map
- Diagnostics settings for the Connector template.
- mqtt
Connection Property MapConfiguration - Mqtt connection configuration settings.
AkriConnectorTemplateRuntimeImageConfiguration, AkriConnectorTemplateRuntimeImageConfigurationArgs
- Image
Configuration Pulumi.Settings Azure Native. Io TOperations. Inputs. Akri Connector Template Runtime Image Configuration Settings - The image configuration settings.
- Additional
Configuration Dictionary<string, string> - Additional configuration for the image of the managed configuration.
- Allocation
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- Persistent
Volume List<object>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- Persistent
Volume List<Pulumi.Claims Azure Native. Io TOperations. Inputs. Akri Connector Template Persistent Volume Claim> - The persistent volume claims for the managed configuration.
- Secrets
List<Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connectors Secret> - Connector secrets that will be mounted onto all connector instances.
- Trust
Settings Pulumi.Azure Native. Io TOperations. Inputs. Akri Connector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- Image
Configuration AkriSettings Connector Template Runtime Image Configuration Settings - The image configuration settings.
- Additional
Configuration map[string]string - Additional configuration for the image of the managed configuration.
- Allocation
Akri
Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- Persistent
Volume []interface{}Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- Persistent
Volume []AkriClaims Connector Template Persistent Volume Claim - The persistent volume claims for the managed configuration.
- Secrets
[]Akri
Connectors Secret - Connector secrets that will be mounted onto all connector instances.
- Trust
Settings AkriConnector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- image
Configuration AkriSettings Connector Template Runtime Image Configuration Settings - The image configuration settings.
- additional
Configuration Map<String,String> - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- persistent
Volume List<Object>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume List<AkriClaims Connector Template Persistent Volume Claim> - The persistent volume claims for the managed configuration.
- secrets
List<Akri
Connectors Secret> - Connector secrets that will be mounted onto all connector instances.
- trust
Settings AkriConnector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- image
Configuration AkriSettings Connector Template Runtime Image Configuration Settings - The image configuration settings.
- additional
Configuration {[key: string]: string} - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- persistent
Volume any[]Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume AkriClaims Connector Template Persistent Volume Claim[] - The persistent volume claims for the managed configuration.
- secrets
Akri
Connectors Secret[] - Connector secrets that will be mounted onto all connector instances.
- trust
Settings AkriConnector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- image_
configuration_ Akrisettings Connector Template Runtime Image Configuration Settings - The image configuration settings.
- additional_
configuration Mapping[str, str] - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- persistent_
volume_ Sequence[Any]claim_ templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent_
volume_ Sequence[Akriclaims Connector Template Persistent Volume Claim] - The persistent volume claims for the managed configuration.
- secrets
Sequence[Akri
Connectors Secret] - Connector secrets that will be mounted onto all connector instances.
- trust_
settings AkriConnector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- image
Configuration Property MapSettings - The image configuration settings.
- additional
Configuration Map<String> - Additional configuration for the image of the managed configuration.
- allocation Property Map
- Allocation settings for the managed configuration.
- persistent
Volume List<Any>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume List<Property Map>Claims - The persistent volume claims for the managed configuration.
- secrets List<Property Map>
- Connector secrets that will be mounted onto all connector instances.
- trust
Settings Property Map - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
AkriConnectorTemplateRuntimeImageConfigurationResponse, AkriConnectorTemplateRuntimeImageConfigurationResponseArgs
- Image
Configuration Pulumi.Settings Azure Native. Io TOperations. Inputs. Akri Connector Template Runtime Image Configuration Settings Response - The image configuration settings.
- Additional
Configuration Dictionary<string, string> - Additional configuration for the image of the managed configuration.
- Allocation
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- Persistent
Volume List<object>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- Persistent
Volume List<Pulumi.Claims Azure Native. Io TOperations. Inputs. Akri Connector Template Persistent Volume Claim Response> - The persistent volume claims for the managed configuration.
- Secrets
List<Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connectors Secret Response> - Connector secrets that will be mounted onto all connector instances.
- Trust
Settings Pulumi.Azure Native. Io TOperations. Inputs. Akri Connector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- Image
Configuration AkriSettings Connector Template Runtime Image Configuration Settings Response - The image configuration settings.
- Additional
Configuration map[string]string - Additional configuration for the image of the managed configuration.
- Allocation
Akri
Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- Persistent
Volume []interface{}Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- Persistent
Volume []AkriClaims Connector Template Persistent Volume Claim Response - The persistent volume claims for the managed configuration.
- Secrets
[]Akri
Connectors Secret Response - Connector secrets that will be mounted onto all connector instances.
- Trust
Settings AkriConnector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- image
Configuration AkriSettings Connector Template Runtime Image Configuration Settings Response - The image configuration settings.
- additional
Configuration Map<String,String> - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- persistent
Volume List<Object>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume List<AkriClaims Connector Template Persistent Volume Claim Response> - The persistent volume claims for the managed configuration.
- secrets
List<Akri
Connectors Secret Response> - Connector secrets that will be mounted onto all connector instances.
- trust
Settings AkriConnector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- image
Configuration AkriSettings Connector Template Runtime Image Configuration Settings Response - The image configuration settings.
- additional
Configuration {[key: string]: string} - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- persistent
Volume any[]Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume AkriClaims Connector Template Persistent Volume Claim Response[] - The persistent volume claims for the managed configuration.
- secrets
Akri
Connectors Secret Response[] - Connector secrets that will be mounted onto all connector instances.
- trust
Settings AkriConnector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- image_
configuration_ Akrisettings Connector Template Runtime Image Configuration Settings Response - The image configuration settings.
- additional_
configuration Mapping[str, str] - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- persistent_
volume_ Sequence[Any]claim_ templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent_
volume_ Sequence[Akriclaims Connector Template Persistent Volume Claim Response] - The persistent volume claims for the managed configuration.
- secrets
Sequence[Akri
Connectors Secret Response] - Connector secrets that will be mounted onto all connector instances.
- trust_
settings AkriConnector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- image
Configuration Property MapSettings - The image configuration settings.
- additional
Configuration Map<String> - Additional configuration for the image of the managed configuration.
- allocation Property Map
- Allocation settings for the managed configuration.
- persistent
Volume List<Any>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume List<Property Map>Claims - The persistent volume claims for the managed configuration.
- secrets List<Property Map>
- Connector secrets that will be mounted onto all connector instances.
- trust
Settings Property Map - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
AkriConnectorTemplateRuntimeImageConfigurationSettings, AkriConnectorTemplateRuntimeImageConfigurationSettingsArgs
- Image
Name string - The image name without any registry reference, tag or digest.
- Image
Pull string | Pulumi.Policy Azure Native. Io TOperations. Akri Connectors Image Pull Policy - The pull policy of the image.
- Registry
Settings Pulumi.Azure | Pulumi.Native. Io TOperations. Inputs. Akri Connectors Container Registry Azure Native. Io TOperations. Inputs. Akri Connectors Registry Endpoint Ref - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- Replicas int
- The number of replicas to be set up.
- Tag
Digest Pulumi.Settings Azure | Pulumi.Native. Io TOperations. Inputs. Akri Connectors Digest Azure Native. Io TOperations. Inputs. Akri Connectors Tag - Optional image tag or digest. If not specified, the default tag is
latest
.
- Image
Name string - The image name without any registry reference, tag or digest.
- Image
Pull string | AkriPolicy Connectors Image Pull Policy - The pull policy of the image.
- Registry
Settings AkriConnectors | AkriContainer Registry Connectors Registry Endpoint Ref - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- Replicas int
- The number of replicas to be set up.
- Tag
Digest AkriSettings Connectors | AkriDigest Connectors Tag - Optional image tag or digest. If not specified, the default tag is
latest
.
- image
Name String - The image name without any registry reference, tag or digest.
- image
Pull String | AkriPolicy Connectors Image Pull Policy - The pull policy of the image.
- registry
Settings AkriConnectors | AkriContainer Registry Connectors Registry Endpoint Ref - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- replicas Integer
- The number of replicas to be set up.
- tag
Digest AkriSettings Connectors | AkriDigest Connectors Tag - Optional image tag or digest. If not specified, the default tag is
latest
.
- image
Name string - The image name without any registry reference, tag or digest.
- image
Pull string | AkriPolicy Connectors Image Pull Policy - The pull policy of the image.
- registry
Settings AkriConnectors | AkriContainer Registry Connectors Registry Endpoint Ref - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- replicas number
- The number of replicas to be set up.
- tag
Digest AkriSettings Connectors | AkriDigest Connectors Tag - Optional image tag or digest. If not specified, the default tag is
latest
.
- image_
name str - The image name without any registry reference, tag or digest.
- image_
pull_ str | Akripolicy Connectors Image Pull Policy - The pull policy of the image.
- registry_
settings AkriConnectors | AkriContainer Registry Connectors Registry Endpoint Ref - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- replicas int
- The number of replicas to be set up.
- tag_
digest_ Akrisettings Connectors | AkriDigest Connectors Tag - Optional image tag or digest. If not specified, the default tag is
latest
.
- image
Name String - The image name without any registry reference, tag or digest.
- image
Pull String | "Always" | "IfPolicy Not Present" | "Never" - The pull policy of the image.
- registry
Settings Property Map | Property Map - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- replicas Number
- The number of replicas to be set up.
- tag
Digest Property Map | Property MapSettings - Optional image tag or digest. If not specified, the default tag is
latest
.
AkriConnectorTemplateRuntimeImageConfigurationSettingsResponse, AkriConnectorTemplateRuntimeImageConfigurationSettingsResponseArgs
- Image
Name string - The image name without any registry reference, tag or digest.
- Image
Pull stringPolicy - The pull policy of the image.
- Registry
Settings Pulumi.Azure | Pulumi.Native. Io TOperations. Inputs. Akri Connectors Container Registry Response Azure Native. Io TOperations. Inputs. Akri Connectors Registry Endpoint Ref Response - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- Replicas int
- The number of replicas to be set up.
- Tag
Digest Pulumi.Settings Azure | Pulumi.Native. Io TOperations. Inputs. Akri Connectors Digest Response Azure Native. Io TOperations. Inputs. Akri Connectors Tag Response - Optional image tag or digest. If not specified, the default tag is
latest
.
- Image
Name string - The image name without any registry reference, tag or digest.
- Image
Pull stringPolicy - The pull policy of the image.
- Registry
Settings AkriConnectors | AkriContainer Registry Response Connectors Registry Endpoint Ref Response - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- Replicas int
- The number of replicas to be set up.
- Tag
Digest AkriSettings Connectors | AkriDigest Response Connectors Tag Response - Optional image tag or digest. If not specified, the default tag is
latest
.
- image
Name String - The image name without any registry reference, tag or digest.
- image
Pull StringPolicy - The pull policy of the image.
- registry
Settings AkriConnectors | AkriContainer Registry Response Connectors Registry Endpoint Ref Response - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- replicas Integer
- The number of replicas to be set up.
- tag
Digest AkriSettings Connectors | AkriDigest Response Connectors Tag Response - Optional image tag or digest. If not specified, the default tag is
latest
.
- image
Name string - The image name without any registry reference, tag or digest.
- image
Pull stringPolicy - The pull policy of the image.
- registry
Settings AkriConnectors | AkriContainer Registry Response Connectors Registry Endpoint Ref Response - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- replicas number
- The number of replicas to be set up.
- tag
Digest AkriSettings Connectors | AkriDigest Response Connectors Tag Response - Optional image tag or digest. If not specified, the default tag is
latest
.
- image_
name str - The image name without any registry reference, tag or digest.
- image_
pull_ strpolicy - The pull policy of the image.
- registry_
settings AkriConnectors | AkriContainer Registry Response Connectors Registry Endpoint Ref Response - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- replicas int
- The number of replicas to be set up.
- tag_
digest_ Akrisettings Connectors | AkriDigest Response Connectors Tag Response - Optional image tag or digest. If not specified, the default tag is
latest
.
- image
Name String - The image name without any registry reference, tag or digest.
- image
Pull StringPolicy - The pull policy of the image.
- registry
Settings Property Map | Property Map - The registry settings for the image. You can omit this field if using the default docker hub repository or using a local image.
- replicas Number
- The number of replicas to be set up.
- tag
Digest Property Map | Property MapSettings - Optional image tag or digest. If not specified, the default tag is
latest
.
AkriConnectorTemplateRuntimeStatefulSetConfiguration, AkriConnectorTemplateRuntimeStatefulSetConfigurationArgs
- Stateful
Set objectConfiguration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- Additional
Configuration Dictionary<string, string> - Additional configuration for the image of the managed configuration.
- Allocation
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- Persistent
Volume List<object>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- Persistent
Volume List<Pulumi.Claims Azure Native. Io TOperations. Inputs. Akri Connector Template Persistent Volume Claim> - The persistent volume claims for the managed configuration.
- Secrets
List<Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connectors Secret> - Connector secrets that will be mounted onto all connector instances.
- Trust
Settings Pulumi.Azure Native. Io TOperations. Inputs. Akri Connector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- Stateful
Set interface{}Configuration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- Additional
Configuration map[string]string - Additional configuration for the image of the managed configuration.
- Allocation
Akri
Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- Persistent
Volume []interface{}Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- Persistent
Volume []AkriClaims Connector Template Persistent Volume Claim - The persistent volume claims for the managed configuration.
- Secrets
[]Akri
Connectors Secret - Connector secrets that will be mounted onto all connector instances.
- Trust
Settings AkriConnector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- stateful
Set ObjectConfiguration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- additional
Configuration Map<String,String> - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- persistent
Volume List<Object>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume List<AkriClaims Connector Template Persistent Volume Claim> - The persistent volume claims for the managed configuration.
- secrets
List<Akri
Connectors Secret> - Connector secrets that will be mounted onto all connector instances.
- trust
Settings AkriConnector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- stateful
Set anyConfiguration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- additional
Configuration {[key: string]: string} - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- persistent
Volume any[]Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume AkriClaims Connector Template Persistent Volume Claim[] - The persistent volume claims for the managed configuration.
- secrets
Akri
Connectors Secret[] - Connector secrets that will be mounted onto all connector instances.
- trust
Settings AkriConnector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- stateful_
set_ Anyconfiguration_ settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- additional_
configuration Mapping[str, str] - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation - Allocation settings for the managed configuration.
- persistent_
volume_ Sequence[Any]claim_ templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent_
volume_ Sequence[Akriclaims Connector Template Persistent Volume Claim] - The persistent volume claims for the managed configuration.
- secrets
Sequence[Akri
Connectors Secret] - Connector secrets that will be mounted onto all connector instances.
- trust_
settings AkriConnector Template Trust List - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- stateful
Set AnyConfiguration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- additional
Configuration Map<String> - Additional configuration for the image of the managed configuration.
- allocation Property Map
- Allocation settings for the managed configuration.
- persistent
Volume List<Any>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume List<Property Map>Claims - The persistent volume claims for the managed configuration.
- secrets List<Property Map>
- Connector secrets that will be mounted onto all connector instances.
- trust
Settings Property Map - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
AkriConnectorTemplateRuntimeStatefulSetConfigurationResponse, AkriConnectorTemplateRuntimeStatefulSetConfigurationResponseArgs
- Stateful
Set objectConfiguration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- Additional
Configuration Dictionary<string, string> - Additional configuration for the image of the managed configuration.
- Allocation
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- Persistent
Volume List<object>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- Persistent
Volume List<Pulumi.Claims Azure Native. Io TOperations. Inputs. Akri Connector Template Persistent Volume Claim Response> - The persistent volume claims for the managed configuration.
- Secrets
List<Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connectors Secret Response> - Connector secrets that will be mounted onto all connector instances.
- Trust
Settings Pulumi.Azure Native. Io TOperations. Inputs. Akri Connector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- Stateful
Set interface{}Configuration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- Additional
Configuration map[string]string - Additional configuration for the image of the managed configuration.
- Allocation
Akri
Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- Persistent
Volume []interface{}Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- Persistent
Volume []AkriClaims Connector Template Persistent Volume Claim Response - The persistent volume claims for the managed configuration.
- Secrets
[]Akri
Connectors Secret Response - Connector secrets that will be mounted onto all connector instances.
- Trust
Settings AkriConnector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- stateful
Set ObjectConfiguration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- additional
Configuration Map<String,String> - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- persistent
Volume List<Object>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume List<AkriClaims Connector Template Persistent Volume Claim Response> - The persistent volume claims for the managed configuration.
- secrets
List<Akri
Connectors Secret Response> - Connector secrets that will be mounted onto all connector instances.
- trust
Settings AkriConnector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- stateful
Set anyConfiguration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- additional
Configuration {[key: string]: string} - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- persistent
Volume any[]Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume AkriClaims Connector Template Persistent Volume Claim Response[] - The persistent volume claims for the managed configuration.
- secrets
Akri
Connectors Secret Response[] - Connector secrets that will be mounted onto all connector instances.
- trust
Settings AkriConnector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- stateful_
set_ Anyconfiguration_ settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- additional_
configuration Mapping[str, str] - Additional configuration for the image of the managed configuration.
- allocation
Akri
Connector Template Bucketized Allocation Response - Allocation settings for the managed configuration.
- persistent_
volume_ Sequence[Any]claim_ templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent_
volume_ Sequence[Akriclaims Connector Template Persistent Volume Claim Response] - The persistent volume claims for the managed configuration.
- secrets
Sequence[Akri
Connectors Secret Response] - Connector secrets that will be mounted onto all connector instances.
- trust_
settings AkriConnector Template Trust List Response - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
- stateful
Set AnyConfiguration Settings - The stateful set configuration settings. This corresponds to the Kubernetes StatefulSet resource. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec
- additional
Configuration Map<String> - Additional configuration for the image of the managed configuration.
- allocation Property Map
- Allocation settings for the managed configuration.
- persistent
Volume List<Any>Claim Templates - The persistent volume claim templates for the managed configuration. See https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/api/openapi-spec/v3/apis__apps__v1_openapi.json.
- persistent
Volume List<Property Map>Claims - The persistent volume claims for the managed configuration.
- secrets List<Property Map>
- Connector secrets that will be mounted onto all connector instances.
- trust
Settings Property Map - Trust list for the connector. This is used to specify the certificates that all connector instances should trust.
AkriConnectorTemplateTrustList, AkriConnectorTemplateTrustListArgs
- Trust
List stringSecret Ref - The secret reference for certificates to trust.
- Trust
List stringSecret Ref - The secret reference for certificates to trust.
- trust
List StringSecret Ref - The secret reference for certificates to trust.
- trust
List stringSecret Ref - The secret reference for certificates to trust.
- trust_
list_ strsecret_ ref - The secret reference for certificates to trust.
- trust
List StringSecret Ref - The secret reference for certificates to trust.
AkriConnectorTemplateTrustListResponse, AkriConnectorTemplateTrustListResponseArgs
- Trust
List stringSecret Ref - The secret reference for certificates to trust.
- Trust
List stringSecret Ref - The secret reference for certificates to trust.
- trust
List StringSecret Ref - The secret reference for certificates to trust.
- trust
List stringSecret Ref - The secret reference for certificates to trust.
- trust_
list_ strsecret_ ref - The secret reference for certificates to trust.
- trust
List StringSecret Ref - The secret reference for certificates to trust.
AkriConnectorsContainerRegistry, AkriConnectorsContainerRegistryArgs
- Container
Registry Pulumi.Settings Azure Native. Io TOperations. Inputs. Akri Connectors Container Registry Settings - The registry settings for the container registry.
- Container
Registry AkriSettings Connectors Container Registry Settings - The registry settings for the container registry.
- container
Registry AkriSettings Connectors Container Registry Settings - The registry settings for the container registry.
- container
Registry AkriSettings Connectors Container Registry Settings - The registry settings for the container registry.
- container_
registry_ Akrisettings Connectors Container Registry Settings - The registry settings for the container registry.
- container
Registry Property MapSettings - The registry settings for the container registry.
AkriConnectorsContainerRegistryResponse, AkriConnectorsContainerRegistryResponseArgs
- Container
Registry Pulumi.Settings Azure Native. Io TOperations. Inputs. Akri Connectors Container Registry Settings Response - The registry settings for the container registry.
- Container
Registry AkriSettings Connectors Container Registry Settings Response - The registry settings for the container registry.
- container
Registry AkriSettings Connectors Container Registry Settings Response - The registry settings for the container registry.
- container
Registry AkriSettings Connectors Container Registry Settings Response - The registry settings for the container registry.
- container_
registry_ Akrisettings Connectors Container Registry Settings Response - The registry settings for the container registry.
- container
Registry Property MapSettings - The registry settings for the container registry.
AkriConnectorsContainerRegistrySettings, AkriConnectorsContainerRegistrySettingsArgs
- Registry string
- The container registry to use for the artifact.
- Image
Pull List<Pulumi.Secrets Azure Native. Io TOperations. Inputs. Akri Connectors Image Pull Secret> - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- Registry string
- The container registry to use for the artifact.
- Image
Pull []AkriSecrets Connectors Image Pull Secret - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- registry String
- The container registry to use for the artifact.
- image
Pull List<AkriSecrets Connectors Image Pull Secret> - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- registry string
- The container registry to use for the artifact.
- image
Pull AkriSecrets Connectors Image Pull Secret[] - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- registry str
- The container registry to use for the artifact.
- image_
pull_ Sequence[Akrisecrets Connectors Image Pull Secret] - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- registry String
- The container registry to use for the artifact.
- image
Pull List<Property Map>Secrets - Optional list of references to secrets in the same namespace to use for pulling the connector image.
AkriConnectorsContainerRegistrySettingsResponse, AkriConnectorsContainerRegistrySettingsResponseArgs
- Registry string
- The container registry to use for the artifact.
- Image
Pull List<Pulumi.Secrets Azure Native. Io TOperations. Inputs. Akri Connectors Image Pull Secret Response> - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- Registry string
- The container registry to use for the artifact.
- Image
Pull []AkriSecrets Connectors Image Pull Secret Response - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- registry String
- The container registry to use for the artifact.
- image
Pull List<AkriSecrets Connectors Image Pull Secret Response> - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- registry string
- The container registry to use for the artifact.
- image
Pull AkriSecrets Connectors Image Pull Secret Response[] - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- registry str
- The container registry to use for the artifact.
- image_
pull_ Sequence[Akrisecrets Connectors Image Pull Secret Response] - Optional list of references to secrets in the same namespace to use for pulling the connector image.
- registry String
- The container registry to use for the artifact.
- image
Pull List<Property Map>Secrets - Optional list of references to secrets in the same namespace to use for pulling the connector image.
AkriConnectorsDiagnosticsLogs, AkriConnectorsDiagnosticsLogsArgs
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- level str
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
AkriConnectorsDiagnosticsLogsResponse, AkriConnectorsDiagnosticsLogsResponseArgs
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- level str
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
AkriConnectorsDigest, AkriConnectorsDigestArgs
- Digest string
- The digest of the image.
- Digest string
- The digest of the image.
- digest String
- The digest of the image.
- digest string
- The digest of the image.
- digest str
- The digest of the image.
- digest String
- The digest of the image.
AkriConnectorsDigestResponse, AkriConnectorsDigestResponseArgs
- Digest string
- The digest of the image.
- Digest string
- The digest of the image.
- digest String
- The digest of the image.
- digest string
- The digest of the image.
- digest str
- The digest of the image.
- digest String
- The digest of the image.
AkriConnectorsImagePullPolicy, AkriConnectorsImagePullPolicyArgs
- Always
- AlwaysAlways pull the image.
- If
Not Present - IfNotPresentIfNotPresent pull the image.
- Never
- NeverNever pull the image.
- Akri
Connectors Image Pull Policy Always - AlwaysAlways pull the image.
- Akri
Connectors Image Pull Policy If Not Present - IfNotPresentIfNotPresent pull the image.
- Akri
Connectors Image Pull Policy Never - NeverNever pull the image.
- Always
- AlwaysAlways pull the image.
- If
Not Present - IfNotPresentIfNotPresent pull the image.
- Never
- NeverNever pull the image.
- Always
- AlwaysAlways pull the image.
- If
Not Present - IfNotPresentIfNotPresent pull the image.
- Never
- NeverNever pull the image.
- ALWAYS
- AlwaysAlways pull the image.
- IF_NOT_PRESENT
- IfNotPresentIfNotPresent pull the image.
- NEVER
- NeverNever pull the image.
- "Always"
- AlwaysAlways pull the image.
- "If
Not Present" - IfNotPresentIfNotPresent pull the image.
- "Never"
- NeverNever pull the image.
AkriConnectorsImagePullSecret, AkriConnectorsImagePullSecretArgs
- Secret
Ref string - The name of the image pull secret.
- Secret
Ref string - The name of the image pull secret.
- secret
Ref String - The name of the image pull secret.
- secret
Ref string - The name of the image pull secret.
- secret_
ref str - The name of the image pull secret.
- secret
Ref String - The name of the image pull secret.
AkriConnectorsImagePullSecretResponse, AkriConnectorsImagePullSecretResponseArgs
- Secret
Ref string - The name of the image pull secret.
- Secret
Ref string - The name of the image pull secret.
- secret
Ref String - The name of the image pull secret.
- secret
Ref string - The name of the image pull secret.
- secret_
ref str - The name of the image pull secret.
- secret
Ref String - The name of the image pull secret.
AkriConnectorsMqttConnectionConfiguration, AkriConnectorsMqttConnectionConfigurationArgs
- Authentication
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connectors Service Account Authentication - Authentication properties.
- Host string
- Host of the Broker in the form of :.
- Keep
Alive intSeconds - KeepAlive for connection in seconds.
- Max
Inflight intMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- Protocol
string | Pulumi.
Azure Native. Io TOperations. Akri Connectors Mqtt Protocol Type - The protocol to use for the connection. Currently only
mqtt
is supported. - Session
Expiry intSeconds - Session expiry in seconds.
- Tls
Pulumi.
Azure Native. Io TOperations. Inputs. Tls Properties - TLS configuration.
- Authentication
Akri
Connectors Service Account Authentication - Authentication properties.
- Host string
- Host of the Broker in the form of :.
- Keep
Alive intSeconds - KeepAlive for connection in seconds.
- Max
Inflight intMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- Protocol
string | Akri
Connectors Mqtt Protocol Type - The protocol to use for the connection. Currently only
mqtt
is supported. - Session
Expiry intSeconds - Session expiry in seconds.
- Tls
Tls
Properties - TLS configuration.
- authentication
Akri
Connectors Service Account Authentication - Authentication properties.
- host String
- Host of the Broker in the form of :.
- keep
Alive IntegerSeconds - KeepAlive for connection in seconds.
- max
Inflight IntegerMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- protocol
String | Akri
Connectors Mqtt Protocol Type - The protocol to use for the connection. Currently only
mqtt
is supported. - session
Expiry IntegerSeconds - Session expiry in seconds.
- tls
Tls
Properties - TLS configuration.
- authentication
Akri
Connectors Service Account Authentication - Authentication properties.
- host string
- Host of the Broker in the form of :.
- keep
Alive numberSeconds - KeepAlive for connection in seconds.
- max
Inflight numberMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- protocol
string | Akri
Connectors Mqtt Protocol Type - The protocol to use for the connection. Currently only
mqtt
is supported. - session
Expiry numberSeconds - Session expiry in seconds.
- tls
Tls
Properties - TLS configuration.
- authentication
Akri
Connectors Service Account Authentication - Authentication properties.
- host str
- Host of the Broker in the form of :.
- keep_
alive_ intseconds - KeepAlive for connection in seconds.
- max_
inflight_ intmessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- protocol
str | Akri
Connectors Mqtt Protocol Type - The protocol to use for the connection. Currently only
mqtt
is supported. - session_
expiry_ intseconds - Session expiry in seconds.
- tls
Tls
Properties - TLS configuration.
- authentication Property Map
- Authentication properties.
- host String
- Host of the Broker in the form of :.
- keep
Alive NumberSeconds - KeepAlive for connection in seconds.
- max
Inflight NumberMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- protocol String | "Mqtt"
- The protocol to use for the connection. Currently only
mqtt
is supported. - session
Expiry NumberSeconds - Session expiry in seconds.
- tls Property Map
- TLS configuration.
AkriConnectorsMqttConnectionConfigurationResponse, AkriConnectorsMqttConnectionConfigurationResponseArgs
- Authentication
Pulumi.
Azure Native. Io TOperations. Inputs. Akri Connectors Service Account Authentication Response - Authentication properties.
- Host string
- Host of the Broker in the form of :.
- Keep
Alive intSeconds - KeepAlive for connection in seconds.
- Max
Inflight intMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- Protocol string
- The protocol to use for the connection. Currently only
mqtt
is supported. - Session
Expiry intSeconds - Session expiry in seconds.
- Tls
Pulumi.
Azure Native. Io TOperations. Inputs. Tls Properties Response - TLS configuration.
- Authentication
Akri
Connectors Service Account Authentication Response - Authentication properties.
- Host string
- Host of the Broker in the form of :.
- Keep
Alive intSeconds - KeepAlive for connection in seconds.
- Max
Inflight intMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- Protocol string
- The protocol to use for the connection. Currently only
mqtt
is supported. - Session
Expiry intSeconds - Session expiry in seconds.
- Tls
Tls
Properties Response - TLS configuration.
- authentication
Akri
Connectors Service Account Authentication Response - Authentication properties.
- host String
- Host of the Broker in the form of :.
- keep
Alive IntegerSeconds - KeepAlive for connection in seconds.
- max
Inflight IntegerMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- protocol String
- The protocol to use for the connection. Currently only
mqtt
is supported. - session
Expiry IntegerSeconds - Session expiry in seconds.
- tls
Tls
Properties Response - TLS configuration.
- authentication
Akri
Connectors Service Account Authentication Response - Authentication properties.
- host string
- Host of the Broker in the form of :.
- keep
Alive numberSeconds - KeepAlive for connection in seconds.
- max
Inflight numberMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- protocol string
- The protocol to use for the connection. Currently only
mqtt
is supported. - session
Expiry numberSeconds - Session expiry in seconds.
- tls
Tls
Properties Response - TLS configuration.
- authentication
Akri
Connectors Service Account Authentication Response - Authentication properties.
- host str
- Host of the Broker in the form of :.
- keep_
alive_ intseconds - KeepAlive for connection in seconds.
- max_
inflight_ intmessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- protocol str
- The protocol to use for the connection. Currently only
mqtt
is supported. - session_
expiry_ intseconds - Session expiry in seconds.
- tls
Tls
Properties Response - TLS configuration.
- authentication Property Map
- Authentication properties.
- host String
- Host of the Broker in the form of :.
- keep
Alive NumberSeconds - KeepAlive for connection in seconds.
- max
Inflight NumberMessages - The max number of messages to keep in flight. For subscribe, this is the receive maximum. For publish, this is the maximum number of messages to send before waiting for an ack.
- protocol String
- The protocol to use for the connection. Currently only
mqtt
is supported. - session
Expiry NumberSeconds - Session expiry in seconds.
- tls Property Map
- TLS configuration.
AkriConnectorsMqttProtocolType, AkriConnectorsMqttProtocolTypeArgs
- Mqtt
- MqttMqtt protocol.
- Akri
Connectors Mqtt Protocol Type Mqtt - MqttMqtt protocol.
- Mqtt
- MqttMqtt protocol.
- Mqtt
- MqttMqtt protocol.
- MQTT
- MqttMqtt protocol.
- "Mqtt"
- MqttMqtt protocol.
AkriConnectorsRegistryEndpointRef, AkriConnectorsRegistryEndpointRefArgs
- Registry
Endpoint stringRef - The name of the registry endpoint.
- Registry
Endpoint stringRef - The name of the registry endpoint.
- registry
Endpoint StringRef - The name of the registry endpoint.
- registry
Endpoint stringRef - The name of the registry endpoint.
- registry_
endpoint_ strref - The name of the registry endpoint.
- registry
Endpoint StringRef - The name of the registry endpoint.
AkriConnectorsRegistryEndpointRefResponse, AkriConnectorsRegistryEndpointRefResponseArgs
- Registry
Endpoint stringRef - The name of the registry endpoint.
- Registry
Endpoint stringRef - The name of the registry endpoint.
- registry
Endpoint StringRef - The name of the registry endpoint.
- registry
Endpoint stringRef - The name of the registry endpoint.
- registry_
endpoint_ strref - The name of the registry endpoint.
- registry
Endpoint StringRef - The name of the registry endpoint.
AkriConnectorsSecret, AkriConnectorsSecretArgs
- Secret
Alias string - The application-defined alias for the secret.
- Secret
Key string - The key in the secret to be mounted.
- Secret
Ref string - The name of the secret to be mounted.
- Secret
Alias string - The application-defined alias for the secret.
- Secret
Key string - The key in the secret to be mounted.
- Secret
Ref string - The name of the secret to be mounted.
- secret
Alias String - The application-defined alias for the secret.
- secret
Key String - The key in the secret to be mounted.
- secret
Ref String - The name of the secret to be mounted.
- secret
Alias string - The application-defined alias for the secret.
- secret
Key string - The key in the secret to be mounted.
- secret
Ref string - The name of the secret to be mounted.
- secret_
alias str - The application-defined alias for the secret.
- secret_
key str - The key in the secret to be mounted.
- secret_
ref str - The name of the secret to be mounted.
- secret
Alias String - The application-defined alias for the secret.
- secret
Key String - The key in the secret to be mounted.
- secret
Ref String - The name of the secret to be mounted.
AkriConnectorsSecretResponse, AkriConnectorsSecretResponseArgs
- Secret
Alias string - The application-defined alias for the secret.
- Secret
Key string - The key in the secret to be mounted.
- Secret
Ref string - The name of the secret to be mounted.
- Secret
Alias string - The application-defined alias for the secret.
- Secret
Key string - The key in the secret to be mounted.
- Secret
Ref string - The name of the secret to be mounted.
- secret
Alias String - The application-defined alias for the secret.
- secret
Key String - The key in the secret to be mounted.
- secret
Ref String - The name of the secret to be mounted.
- secret
Alias string - The application-defined alias for the secret.
- secret
Key string - The key in the secret to be mounted.
- secret
Ref string - The name of the secret to be mounted.
- secret_
alias str - The application-defined alias for the secret.
- secret_
key str - The key in the secret to be mounted.
- secret_
ref str - The name of the secret to be mounted.
- secret
Alias String - The application-defined alias for the secret.
- secret
Key String - The key in the secret to be mounted.
- secret
Ref String - The name of the secret to be mounted.
AkriConnectorsServiceAccountAuthentication, AkriConnectorsServiceAccountAuthenticationArgs
- Service
Account Pulumi.Token Settings Azure Native. Io TOperations. Inputs. Akri Connectors Service Account Token Settings - The service account token for the MQTT connection.
- Service
Account AkriToken Settings Connectors Service Account Token Settings - The service account token for the MQTT connection.
- service
Account AkriToken Settings Connectors Service Account Token Settings - The service account token for the MQTT connection.
- service
Account AkriToken Settings Connectors Service Account Token Settings - The service account token for the MQTT connection.
- service_
account_ Akritoken_ settings Connectors Service Account Token Settings - The service account token for the MQTT connection.
- service
Account Property MapToken Settings - The service account token for the MQTT connection.
AkriConnectorsServiceAccountAuthenticationResponse, AkriConnectorsServiceAccountAuthenticationResponseArgs
- Service
Account Pulumi.Token Settings Azure Native. Io TOperations. Inputs. Akri Connectors Service Account Token Settings Response - The service account token for the MQTT connection.
- Service
Account AkriToken Settings Connectors Service Account Token Settings Response - The service account token for the MQTT connection.
- service
Account AkriToken Settings Connectors Service Account Token Settings Response - The service account token for the MQTT connection.
- service
Account AkriToken Settings Connectors Service Account Token Settings Response - The service account token for the MQTT connection.
- service_
account_ Akritoken_ settings Connectors Service Account Token Settings Response - The service account token for the MQTT connection.
- service
Account Property MapToken Settings - The service account token for the MQTT connection.
AkriConnectorsServiceAccountTokenSettings, AkriConnectorsServiceAccountTokenSettingsArgs
- Audience string
- The audience for the service account token.
- Audience string
- The audience for the service account token.
- audience String
- The audience for the service account token.
- audience string
- The audience for the service account token.
- audience str
- The audience for the service account token.
- audience String
- The audience for the service account token.
AkriConnectorsServiceAccountTokenSettingsResponse, AkriConnectorsServiceAccountTokenSettingsResponseArgs
- Audience string
- The audience for the service account token.
- Audience string
- The audience for the service account token.
- audience String
- The audience for the service account token.
- audience string
- The audience for the service account token.
- audience str
- The audience for the service account token.
- audience String
- The audience for the service account token.
AkriConnectorsTag, AkriConnectorsTagArgs
- Tag string
- The tag of the image.
- Tag string
- The tag of the image.
- tag String
- The tag of the image.
- tag string
- The tag of the image.
- tag str
- The tag of the image.
- tag String
- The tag of the image.
AkriConnectorsTagResponse, AkriConnectorsTagResponseArgs
- Tag string
- The tag of the image.
- Tag string
- The tag of the image.
- tag String
- The tag of the image.
- tag string
- The tag of the image.
- tag str
- The tag of the image.
- tag String
- The tag of the image.
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
OperationalMode, OperationalModeArgs
- Enabled
- EnabledEnabled is equivalent to True
- Disabled
- DisabledDisabled is equivalent to False.
- Operational
Mode Enabled - EnabledEnabled is equivalent to True
- Operational
Mode Disabled - DisabledDisabled is equivalent to False.
- Enabled
- EnabledEnabled is equivalent to True
- Disabled
- DisabledDisabled is equivalent to False.
- Enabled
- EnabledEnabled is equivalent to True
- Disabled
- DisabledDisabled is equivalent to False.
- ENABLED
- EnabledEnabled is equivalent to True
- DISABLED
- DisabledDisabled is equivalent to False.
- "Enabled"
- EnabledEnabled is equivalent to True
- "Disabled"
- DisabledDisabled is equivalent to False.
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.
TlsProperties, TlsPropertiesArgs
- Mode
string | Pulumi.
Azure Native. Io TOperations. Operational Mode - Mode for TLS.
- Trusted
Ca stringCertificate Config Map Ref - Trusted CA certificate config map.
- Mode
string | Operational
Mode - Mode for TLS.
- Trusted
Ca stringCertificate Config Map Ref - Trusted CA certificate config map.
- mode
String | Operational
Mode - Mode for TLS.
- trusted
Ca StringCertificate Config Map Ref - Trusted CA certificate config map.
- mode
string | Operational
Mode - Mode for TLS.
- trusted
Ca stringCertificate Config Map Ref - Trusted CA certificate config map.
- mode
str | Operational
Mode - Mode for TLS.
- trusted_
ca_ strcertificate_ config_ map_ ref - Trusted CA certificate config map.
- mode String | "Enabled" | "Disabled"
- Mode for TLS.
- trusted
Ca StringCertificate Config Map Ref - Trusted CA certificate config map.
TlsPropertiesResponse, TlsPropertiesResponseArgs
- Mode string
- Mode for TLS.
- Trusted
Ca stringCertificate Config Map Ref - Trusted CA certificate config map.
- Mode string
- Mode for TLS.
- Trusted
Ca stringCertificate Config Map Ref - Trusted CA certificate config map.
- mode String
- Mode for TLS.
- trusted
Ca StringCertificate Config Map Ref - Trusted CA certificate config map.
- mode string
- Mode for TLS.
- trusted
Ca stringCertificate Config Map Ref - Trusted CA certificate config map.
- mode str
- Mode for TLS.
- trusted_
ca_ strcertificate_ config_ map_ ref - Trusted CA certificate config map.
- mode String
- Mode for TLS.
- trusted
Ca StringCertificate Config Map Ref - Trusted CA certificate config map.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:iotoperations:AkriConnectorTemplate bfimycofjtzxduufwanuxwoudsh /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperations/instances/{instanceName}/akriConnectorTemplates/{akriConnectorTemplateName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0