1. Packages
  2. Azure Native
  3. API Docs
  4. purview
  5. KafkaConfiguration
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

azure-native.purview.KafkaConfiguration

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

    The configuration of the event streaming service resource attached to the Purview account for kafka notifications. Azure REST API version: 2021-12-01.

    Other available API versions: 2023-05-01-preview.

    Example Usage

    KafkaConfigurations_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var kafkaConfiguration = new AzureNative.Purview.KafkaConfiguration("kafkaConfiguration", new()
        {
            AccountName = "account1",
            ConsumerGroup = "consumerGroup",
            Credentials = new AzureNative.Purview.Inputs.CredentialsArgs
            {
                IdentityId = "/subscriptions/47e8596d-ee73-4eb2-b6b4-cc13c2b87ssd/resourceGroups/testRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testId",
                Type = AzureNative.Purview.CredentialsType.UserAssigned,
            },
            EventHubPartitionId = "partitionId",
            EventHubResourceId = "/subscriptions/225be6fe-ec1c-4d51-a368-f69348d2e6c5/resourceGroups/testRG/providers/Microsoft.EventHub/namespaces/eventHubNameSpaceName",
            EventHubType = AzureNative.Purview.EventHubType.Notification,
            EventStreamingState = AzureNative.Purview.EventStreamingState.Enabled,
            EventStreamingType = AzureNative.Purview.EventStreamingType.Azure,
            KafkaConfigurationName = "kafkaConfigName",
            ResourceGroupName = "rgpurview",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/purview/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := purview.NewKafkaConfiguration(ctx, "kafkaConfiguration", &purview.KafkaConfigurationArgs{
    			AccountName:   pulumi.String("account1"),
    			ConsumerGroup: pulumi.String("consumerGroup"),
    			Credentials: &purview.CredentialsArgs{
    				IdentityId: pulumi.String("/subscriptions/47e8596d-ee73-4eb2-b6b4-cc13c2b87ssd/resourceGroups/testRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testId"),
    				Type:       pulumi.String(purview.CredentialsTypeUserAssigned),
    			},
    			EventHubPartitionId:    pulumi.String("partitionId"),
    			EventHubResourceId:     pulumi.String("/subscriptions/225be6fe-ec1c-4d51-a368-f69348d2e6c5/resourceGroups/testRG/providers/Microsoft.EventHub/namespaces/eventHubNameSpaceName"),
    			EventHubType:           pulumi.String(purview.EventHubTypeNotification),
    			EventStreamingState:    pulumi.String(purview.EventStreamingStateEnabled),
    			EventStreamingType:     pulumi.String(purview.EventStreamingTypeAzure),
    			KafkaConfigurationName: pulumi.String("kafkaConfigName"),
    			ResourceGroupName:      pulumi.String("rgpurview"),
    		})
    		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.purview.KafkaConfiguration;
    import com.pulumi.azurenative.purview.KafkaConfigurationArgs;
    import com.pulumi.azurenative.purview.inputs.CredentialsArgs;
    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 kafkaConfiguration = new KafkaConfiguration("kafkaConfiguration", KafkaConfigurationArgs.builder()        
                .accountName("account1")
                .consumerGroup("consumerGroup")
                .credentials(CredentialsArgs.builder()
                    .identityId("/subscriptions/47e8596d-ee73-4eb2-b6b4-cc13c2b87ssd/resourceGroups/testRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testId")
                    .type("UserAssigned")
                    .build())
                .eventHubPartitionId("partitionId")
                .eventHubResourceId("/subscriptions/225be6fe-ec1c-4d51-a368-f69348d2e6c5/resourceGroups/testRG/providers/Microsoft.EventHub/namespaces/eventHubNameSpaceName")
                .eventHubType("Notification")
                .eventStreamingState("Enabled")
                .eventStreamingType("Azure")
                .kafkaConfigurationName("kafkaConfigName")
                .resourceGroupName("rgpurview")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    kafka_configuration = azure_native.purview.KafkaConfiguration("kafkaConfiguration",
        account_name="account1",
        consumer_group="consumerGroup",
        credentials=azure_native.purview.CredentialsArgs(
            identity_id="/subscriptions/47e8596d-ee73-4eb2-b6b4-cc13c2b87ssd/resourceGroups/testRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testId",
            type=azure_native.purview.CredentialsType.USER_ASSIGNED,
        ),
        event_hub_partition_id="partitionId",
        event_hub_resource_id="/subscriptions/225be6fe-ec1c-4d51-a368-f69348d2e6c5/resourceGroups/testRG/providers/Microsoft.EventHub/namespaces/eventHubNameSpaceName",
        event_hub_type=azure_native.purview.EventHubType.NOTIFICATION,
        event_streaming_state=azure_native.purview.EventStreamingState.ENABLED,
        event_streaming_type=azure_native.purview.EventStreamingType.AZURE,
        kafka_configuration_name="kafkaConfigName",
        resource_group_name="rgpurview")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const kafkaConfiguration = new azure_native.purview.KafkaConfiguration("kafkaConfiguration", {
        accountName: "account1",
        consumerGroup: "consumerGroup",
        credentials: {
            identityId: "/subscriptions/47e8596d-ee73-4eb2-b6b4-cc13c2b87ssd/resourceGroups/testRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testId",
            type: azure_native.purview.CredentialsType.UserAssigned,
        },
        eventHubPartitionId: "partitionId",
        eventHubResourceId: "/subscriptions/225be6fe-ec1c-4d51-a368-f69348d2e6c5/resourceGroups/testRG/providers/Microsoft.EventHub/namespaces/eventHubNameSpaceName",
        eventHubType: azure_native.purview.EventHubType.Notification,
        eventStreamingState: azure_native.purview.EventStreamingState.Enabled,
        eventStreamingType: azure_native.purview.EventStreamingType.Azure,
        kafkaConfigurationName: "kafkaConfigName",
        resourceGroupName: "rgpurview",
    });
    
    resources:
      kafkaConfiguration:
        type: azure-native:purview:KafkaConfiguration
        properties:
          accountName: account1
          consumerGroup: consumerGroup
          credentials:
            identityId: /subscriptions/47e8596d-ee73-4eb2-b6b4-cc13c2b87ssd/resourceGroups/testRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testId
            type: UserAssigned
          eventHubPartitionId: partitionId
          eventHubResourceId: /subscriptions/225be6fe-ec1c-4d51-a368-f69348d2e6c5/resourceGroups/testRG/providers/Microsoft.EventHub/namespaces/eventHubNameSpaceName
          eventHubType: Notification
          eventStreamingState: Enabled
          eventStreamingType: Azure
          kafkaConfigurationName: kafkaConfigName
          resourceGroupName: rgpurview
    

    Create KafkaConfiguration Resource

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

    Constructor syntax

    new KafkaConfiguration(name: string, args: KafkaConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def KafkaConfiguration(resource_name: str,
                           args: KafkaConfigurationArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def KafkaConfiguration(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           account_name: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           consumer_group: Optional[str] = None,
                           credentials: Optional[CredentialsArgs] = None,
                           event_hub_partition_id: Optional[str] = None,
                           event_hub_resource_id: Optional[str] = None,
                           event_hub_type: Optional[Union[str, EventHubType]] = None,
                           event_streaming_state: Optional[Union[str, EventStreamingState]] = None,
                           event_streaming_type: Optional[Union[str, EventStreamingType]] = None,
                           kafka_configuration_name: Optional[str] = None)
    func NewKafkaConfiguration(ctx *Context, name string, args KafkaConfigurationArgs, opts ...ResourceOption) (*KafkaConfiguration, error)
    public KafkaConfiguration(string name, KafkaConfigurationArgs args, CustomResourceOptions? opts = null)
    public KafkaConfiguration(String name, KafkaConfigurationArgs args)
    public KafkaConfiguration(String name, KafkaConfigurationArgs args, CustomResourceOptions options)
    
    type: azure-native:purview:KafkaConfiguration
    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 KafkaConfigurationArgs
    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 KafkaConfigurationArgs
    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 KafkaConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KafkaConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KafkaConfigurationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var kafkaConfigurationResource = new AzureNative.Purview.KafkaConfiguration("kafkaConfigurationResource", new()
    {
        AccountName = "string",
        ResourceGroupName = "string",
        ConsumerGroup = "string",
        Credentials = new AzureNative.Purview.Inputs.CredentialsArgs
        {
            IdentityId = "string",
            Type = "string",
        },
        EventHubPartitionId = "string",
        EventHubResourceId = "string",
        EventHubType = "string",
        EventStreamingState = "string",
        EventStreamingType = "string",
        KafkaConfigurationName = "string",
    });
    
    example, err := purview.NewKafkaConfiguration(ctx, "kafkaConfigurationResource", &purview.KafkaConfigurationArgs{
    AccountName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    ConsumerGroup: pulumi.String("string"),
    Credentials: &purview.CredentialsArgs{
    IdentityId: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    EventHubPartitionId: pulumi.String("string"),
    EventHubResourceId: pulumi.String("string"),
    EventHubType: pulumi.String("string"),
    EventStreamingState: pulumi.String("string"),
    EventStreamingType: pulumi.String("string"),
    KafkaConfigurationName: pulumi.String("string"),
    })
    
    var kafkaConfigurationResource = new KafkaConfiguration("kafkaConfigurationResource", KafkaConfigurationArgs.builder()        
        .accountName("string")
        .resourceGroupName("string")
        .consumerGroup("string")
        .credentials(CredentialsArgs.builder()
            .identityId("string")
            .type("string")
            .build())
        .eventHubPartitionId("string")
        .eventHubResourceId("string")
        .eventHubType("string")
        .eventStreamingState("string")
        .eventStreamingType("string")
        .kafkaConfigurationName("string")
        .build());
    
    kafka_configuration_resource = azure_native.purview.KafkaConfiguration("kafkaConfigurationResource",
        account_name="string",
        resource_group_name="string",
        consumer_group="string",
        credentials=azure_native.purview.CredentialsArgs(
            identity_id="string",
            type="string",
        ),
        event_hub_partition_id="string",
        event_hub_resource_id="string",
        event_hub_type="string",
        event_streaming_state="string",
        event_streaming_type="string",
        kafka_configuration_name="string")
    
    const kafkaConfigurationResource = new azure_native.purview.KafkaConfiguration("kafkaConfigurationResource", {
        accountName: "string",
        resourceGroupName: "string",
        consumerGroup: "string",
        credentials: {
            identityId: "string",
            type: "string",
        },
        eventHubPartitionId: "string",
        eventHubResourceId: "string",
        eventHubType: "string",
        eventStreamingState: "string",
        eventStreamingType: "string",
        kafkaConfigurationName: "string",
    });
    
    type: azure-native:purview:KafkaConfiguration
    properties:
        accountName: string
        consumerGroup: string
        credentials:
            identityId: string
            type: string
        eventHubPartitionId: string
        eventHubResourceId: string
        eventHubType: string
        eventStreamingState: string
        eventStreamingType: string
        kafkaConfigurationName: string
        resourceGroupName: string
    

    KafkaConfiguration Resource Properties

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

    Inputs

    The KafkaConfiguration resource accepts the following input properties:

    AccountName string
    The name of the account.
    ResourceGroupName string
    The resource group name.
    ConsumerGroup string
    Consumer group for hook event hub.
    Credentials Pulumi.AzureNative.Purview.Inputs.Credentials
    Credentials to access event hub.
    EventHubPartitionId string
    Optional partition Id for notification event hub. If not set, all partitions will be leveraged.
    EventHubResourceId string
    EventHubType string | Pulumi.AzureNative.Purview.EventHubType
    The event hub type.
    EventStreamingState string | Pulumi.AzureNative.Purview.EventStreamingState
    The state of the event streaming service
    EventStreamingType string | Pulumi.AzureNative.Purview.EventStreamingType
    The event streaming service type
    KafkaConfigurationName string
    The kafka configuration name.
    AccountName string
    The name of the account.
    ResourceGroupName string
    The resource group name.
    ConsumerGroup string
    Consumer group for hook event hub.
    Credentials CredentialsArgs
    Credentials to access event hub.
    EventHubPartitionId string
    Optional partition Id for notification event hub. If not set, all partitions will be leveraged.
    EventHubResourceId string
    EventHubType string | EventHubType
    The event hub type.
    EventStreamingState string | EventStreamingState
    The state of the event streaming service
    EventStreamingType string | EventStreamingType
    The event streaming service type
    KafkaConfigurationName string
    The kafka configuration name.
    accountName String
    The name of the account.
    resourceGroupName String
    The resource group name.
    consumerGroup String
    Consumer group for hook event hub.
    credentials Credentials
    Credentials to access event hub.
    eventHubPartitionId String
    Optional partition Id for notification event hub. If not set, all partitions will be leveraged.
    eventHubResourceId String
    eventHubType String | EventHubType
    The event hub type.
    eventStreamingState String | EventStreamingState
    The state of the event streaming service
    eventStreamingType String | EventStreamingType
    The event streaming service type
    kafkaConfigurationName String
    The kafka configuration name.
    accountName string
    The name of the account.
    resourceGroupName string
    The resource group name.
    consumerGroup string
    Consumer group for hook event hub.
    credentials Credentials
    Credentials to access event hub.
    eventHubPartitionId string
    Optional partition Id for notification event hub. If not set, all partitions will be leveraged.
    eventHubResourceId string
    eventHubType string | EventHubType
    The event hub type.
    eventStreamingState string | EventStreamingState
    The state of the event streaming service
    eventStreamingType string | EventStreamingType
    The event streaming service type
    kafkaConfigurationName string
    The kafka configuration name.
    account_name str
    The name of the account.
    resource_group_name str
    The resource group name.
    consumer_group str
    Consumer group for hook event hub.
    credentials CredentialsArgs
    Credentials to access event hub.
    event_hub_partition_id str
    Optional partition Id for notification event hub. If not set, all partitions will be leveraged.
    event_hub_resource_id str
    event_hub_type str | EventHubType
    The event hub type.
    event_streaming_state str | EventStreamingState
    The state of the event streaming service
    event_streaming_type str | EventStreamingType
    The event streaming service type
    kafka_configuration_name str
    The kafka configuration name.
    accountName String
    The name of the account.
    resourceGroupName String
    The resource group name.
    consumerGroup String
    Consumer group for hook event hub.
    credentials Property Map
    Credentials to access event hub.
    eventHubPartitionId String
    Optional partition Id for notification event hub. If not set, all partitions will be leveraged.
    eventHubResourceId String
    eventHubType String | "Notification" | "Hook"
    The event hub type.
    eventStreamingState String | "Disabled" | "Enabled"
    The state of the event streaming service
    eventStreamingType String | "None" | "Managed" | "Azure"
    The event streaming service type
    kafkaConfigurationName String
    The kafka configuration name.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Gets or sets the name.
    SystemData Pulumi.AzureNative.Purview.Outputs.ProxyResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    Type string
    Gets or sets the type.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Gets or sets the name.
    SystemData ProxyResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    Type string
    Gets or sets the type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Gets or sets the name.
    systemData ProxyResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    type String
    Gets or sets the type.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Gets or sets the name.
    systemData ProxyResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    type string
    Gets or sets the type.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Gets or sets the name.
    system_data ProxyResourceResponseSystemData
    Metadata pertaining to creation and last modification of the resource.
    type str
    Gets or sets the type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Gets or sets the name.
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    Gets or sets the type.

    Supporting Types

    Credentials, CredentialsArgs

    IdentityId string
    Identity identifier for UserAssign type.
    Type string | Pulumi.AzureNative.Purview.CredentialsType
    Identity Type.
    IdentityId string
    Identity identifier for UserAssign type.
    Type string | CredentialsType
    Identity Type.
    identityId String
    Identity identifier for UserAssign type.
    type String | CredentialsType
    Identity Type.
    identityId string
    Identity identifier for UserAssign type.
    type string | CredentialsType
    Identity Type.
    identity_id str
    Identity identifier for UserAssign type.
    type str | CredentialsType
    Identity Type.
    identityId String
    Identity identifier for UserAssign type.
    type String | "None" | "SystemAssigned" | "UserAssigned"
    Identity Type.

    CredentialsResponse, CredentialsResponseArgs

    IdentityId string
    Identity identifier for UserAssign type.
    Type string
    Identity Type.
    IdentityId string
    Identity identifier for UserAssign type.
    Type string
    Identity Type.
    identityId String
    Identity identifier for UserAssign type.
    type String
    Identity Type.
    identityId string
    Identity identifier for UserAssign type.
    type string
    Identity Type.
    identity_id str
    Identity identifier for UserAssign type.
    type str
    Identity Type.
    identityId String
    Identity identifier for UserAssign type.
    type String
    Identity Type.

    CredentialsType, CredentialsTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    CredentialsTypeNone
    None
    CredentialsTypeSystemAssigned
    SystemAssigned
    CredentialsTypeUserAssigned
    UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned

    EventHubType, EventHubTypeArgs

    Notification
    Notification
    Hook
    Hook
    EventHubTypeNotification
    Notification
    EventHubTypeHook
    Hook
    Notification
    Notification
    Hook
    Hook
    Notification
    Notification
    Hook
    Hook
    NOTIFICATION
    Notification
    HOOK
    Hook
    "Notification"
    Notification
    "Hook"
    Hook

    EventStreamingState, EventStreamingStateArgs

    Disabled
    Disabled
    Enabled
    Enabled
    EventStreamingStateDisabled
    Disabled
    EventStreamingStateEnabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    DISABLED
    Disabled
    ENABLED
    Enabled
    "Disabled"
    Disabled
    "Enabled"
    Enabled

    EventStreamingType, EventStreamingTypeArgs

    None
    None
    Managed
    Managed
    Azure
    Azure
    EventStreamingTypeNone
    None
    EventStreamingTypeManaged
    Managed
    EventStreamingTypeAzure
    Azure
    None
    None
    Managed
    Managed
    Azure
    Azure
    None
    None
    Managed
    Managed
    Azure
    Azure
    NONE
    None
    MANAGED
    Managed
    AZURE
    Azure
    "None"
    None
    "Managed"
    Managed
    "Azure"
    Azure

    ProxyResourceResponseSystemData, ProxyResourceResponseSystemDataArgs

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

    Import

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

    $ pulumi import azure-native:purview:KafkaConfiguration kafkaConfigName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Purview/accounts/{accountName}/kafkaConfigurations/{kafkaConfigurationName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi